123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package com.fdkankan.contro.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import java.io.Serializable;
- import java.util.Date;
- import lombok.Getter;
- import lombok.Setter;
- /**
- * <p>
- * 场景信息变更需要发送mq信息队列配置表
- * </p>
- *
- * @author
- * @since 2024-04-16
- */
- @Getter
- @Setter
- @TableName("t_scene_info_sync_mq_config")
- public class SceneInfoSyncMqConfig implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Integer id;
- /**
- * 需要同步的消息类型
- */
- @TableField("info_type")
- private String infoType;
- /**
- * 队列名
- */
- @TableField("queue_name")
- private String queueName;
- /**
- * 需要同步信息的应用名
- */
- @TableField("app_name")
- private String appName;
- @TableField("create_time")
- private Date createTime;
- @TableField("update_time")
- private Date updateTime;
- /**
- * A正常,I删除
- */
- @TableField("rec_status")
- @TableLogic("A")
- private String recStatus;
- }
|