SceneAsynOperLog.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package com.fdkankan.contro.entity;
  2. import com.baomidou.mybatisplus.annotation.IdType;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import com.baomidou.mybatisplus.annotation.TableLogic;
  6. import com.baomidou.mybatisplus.annotation.TableName;
  7. import java.io.Serializable;
  8. import java.util.Date;
  9. import lombok.Getter;
  10. import lombok.Setter;
  11. /**
  12. * <p>
  13. *
  14. * </p>
  15. *
  16. * @author
  17. * @since 2022-12-16
  18. */
  19. @Getter
  20. @Setter
  21. @TableName("t_scene_asyn_oper_log")
  22. public class SceneAsynOperLog implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. @TableId(value = "id", type = IdType.AUTO)
  25. private Long id;
  26. /**
  27. * 场景码
  28. */
  29. @TableField("num")
  30. private String num;
  31. /**
  32. * 操作类型(upload-上传,download-下载)
  33. */
  34. @TableField("oper_type")
  35. private String operType;
  36. /**
  37. * 模块名称
  38. */
  39. @TableField("module")
  40. private String module;
  41. /**
  42. * 功能
  43. */
  44. @TableField("func")
  45. private String func;
  46. /**
  47. * 版本号
  48. */
  49. @TableField("version")
  50. private Integer version;
  51. /**
  52. * 状态(0-处理中,1-处理完成,2-处理失败)
  53. */
  54. @TableField("state")
  55. private Integer state;
  56. /**
  57. * 下载链接
  58. */
  59. @TableField("url")
  60. private String url;
  61. /**
  62. * 是否需要弹窗(0-否,1-是)
  63. */
  64. @TableField("pop")
  65. private Boolean pop;
  66. /**
  67. * 扩展信息
  68. */
  69. @TableField("ext_data")
  70. private String extData;
  71. /**
  72. * 创建时间
  73. */
  74. @TableField("create_time")
  75. private Date createTime;
  76. /**
  77. * 修改时间
  78. */
  79. @TableField("update_time")
  80. private Date updateTime;
  81. /**
  82. * 状态(A-有效,I-无效)
  83. */
  84. @TableField("rec_status")
  85. @TableLogic(value = "A", delval = "I")
  86. private String recStatus;
  87. }