SceneInfoSyncMqConfig.java 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.fdkankan.contro.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. import lombok.Getter;
  6. import lombok.Setter;
  7. /**
  8. * <p>
  9. * 场景信息变更需要发送mq信息队列配置表
  10. * </p>
  11. *
  12. * @author
  13. * @since 2024-04-16
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_scene_info_sync_mq_config")
  18. public class SceneInfoSyncMqConfig implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Integer id;
  22. /**
  23. * 需要同步的消息类型
  24. */
  25. @TableField("info_type")
  26. private String infoType;
  27. /**
  28. * 队列名
  29. */
  30. @TableField("queue_name")
  31. private String queueName;
  32. /**
  33. * 需要同步信息的应用名
  34. */
  35. @TableField("app_name")
  36. private String appName;
  37. @TableField("create_time")
  38. private Date createTime;
  39. @TableField("update_time")
  40. private Date updateTime;
  41. /**
  42. * A正常,I删除
  43. */
  44. @TableField("rec_status")
  45. @TableLogic("A")
  46. private String recStatus;
  47. }