123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package com.fdkankan.contro.entity;
- import com.baomidou.mybatisplus.annotation.*;
- import lombok.Getter;
- import lombok.Setter;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * <p>
- * 场景上传文件批次记录表
- * </p>
- *
- * @author
- * @since 2023-11-23
- */
- @Getter
- @Setter
- @TableName("t_orig_file_upload_batch")
- public class OrigFileUploadBatch implements Serializable {
- private static final long serialVersionUID = 1L;
- @TableId(value = "id", type = IdType.AUTO)
- private Long id;
- /**
- * 上传批次id
- */
- @TableField("batch_id")
- private String batchId;
- /**
- * 场景uuid
- */
- @TableField("uuid")
- private String uuid;
- /**
- * 状态(0-等待中,1-通知计算,2-退出计算)
- */
- @TableField("status")
- private Integer status;
- /**
- * 上传次数
- */
- @TableField("notice_times")
- private Integer noticeTimes;
- /**
- * mq消息体
- */
- @TableField("mq_content")
- private String mqContent;
- /**
- * 创建时间
- */
- @TableField("create_time")
- private Date createTime;
- /**
- * 修改时间
- */
- @TableField("update_time")
- private Date updateTime;
- /**
- * A-有效,I无效
- */
- @TableField("rec_status")
- @TableLogic(value = "A", delval = "I")
- private String recStatus;
- @TableField(exist = false)
- private Integer[] inStatus;
- @TableField("call_type")
- private Integer callType;
- @TableField("pt_index")
- private Integer ptIndex;
- }
|