SmsbItemPush.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. package com.inspur.source.domain;
  2. import com.baomidou.mybatisplus.annotation.TableId;
  3. import com.baomidou.mybatisplus.annotation.TableName;
  4. import lombok.Data;
  5. import lombok.EqualsAndHashCode;
  6. import org.dromara.common.tenant.core.TenantEntity;
  7. import java.io.Serial;
  8. import java.util.Date;
  9. /**
  10. * 内容发布对象 smsb_item_push
  11. *
  12. * @author Hao Li
  13. * @date 2025-02-25
  14. */
  15. @Data
  16. @EqualsAndHashCode(callSuper = true)
  17. @TableName("smsb_item_push")
  18. public class SmsbItemPush extends TenantEntity {
  19. @Serial
  20. private static final long serialVersionUID = 1L;
  21. /**
  22. * 主键ID
  23. */
  24. @TableId(value = "id")
  25. private Long id;
  26. /**
  27. * 名称
  28. */
  29. private String name;
  30. /**
  31. * 优先级 1-垫片 2-常规 3-紧急
  32. */
  33. private Long level;
  34. /**
  35. * 类型 1-轮播 2-分屏 3-素材
  36. */
  37. private Long itemType;
  38. /**
  39. * 发布状态 draft-未提交 waiting-审核中 finish-审核通过 termination-审核驳回
  40. */
  41. private String status;
  42. private Date startDate;
  43. private Date endDate;
  44. /**
  45. * 创建人
  46. */
  47. private String createUser;
  48. /**
  49. * 提交审核后,flow taskId
  50. */
  51. private Long taskId;
  52. /**
  53. * 0-下架 1-上架
  54. */
  55. private Integer isUse;
  56. }