OrigFileUploadBatch.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package com.fdkankan.contro.entity;
  2. import com.baomidou.mybatisplus.annotation.*;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * <p>
  9. * 场景上传文件批次记录表
  10. * </p>
  11. *
  12. * @author
  13. * @since 2023-11-23
  14. */
  15. @Getter
  16. @Setter
  17. @TableName("t_orig_file_upload_batch")
  18. public class OrigFileUploadBatch implements Serializable {
  19. private static final long serialVersionUID = 1L;
  20. @TableId(value = "id", type = IdType.AUTO)
  21. private Long id;
  22. /**
  23. * 上传批次id
  24. */
  25. @TableField("batch_id")
  26. private String batchId;
  27. /**
  28. * 场景uuid
  29. */
  30. @TableField("uuid")
  31. private String uuid;
  32. /**
  33. * 状态(0-等待中,1-通知计算,2-退出计算)
  34. */
  35. @TableField("status")
  36. private Integer status;
  37. /**
  38. * 上传次数
  39. */
  40. @TableField("notice_times")
  41. private Integer noticeTimes;
  42. /**
  43. * mq消息体
  44. */
  45. @TableField("mq_content")
  46. private String mqContent;
  47. /**
  48. * 创建时间
  49. */
  50. @TableField("create_time")
  51. private Date createTime;
  52. /**
  53. * 修改时间
  54. */
  55. @TableField("update_time")
  56. private Date updateTime;
  57. /**
  58. * A-有效,I无效
  59. */
  60. @TableField("rec_status")
  61. @TableLogic(value = "A", delval = "I")
  62. private String recStatus;
  63. @TableField(exist = false)
  64. private Integer[] inStatus;
  65. @TableField("call_type")
  66. private Integer callType;
  67. @TableField("pt_index")
  68. private Integer ptIndex;
  69. }