Whisper.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.flyer.foster.entity;
  2. import com.baomidou.mybatisplus.annotation.FieldFill;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableField;
  5. import com.baomidou.mybatisplus.annotation.TableId;
  6. import com.baomidou.mybatisplus.annotation.TableLogic;
  7. import com.baomidou.mybatisplus.annotation.TableName;
  8. import com.baomidou.mybatisplus.annotation.Version;
  9. import java.io.Serializable;
  10. import java.time.LocalDateTime;
  11. import lombok.Getter;
  12. import lombok.Setter;
  13. /**
  14. * <p>
  15. * 悄悄话
  16. * </p>
  17. *
  18. * @author flyer
  19. * @since 2024-05-09
  20. */
  21. @Getter
  22. @Setter
  23. @TableName("tb_whisper")
  24. public class Whisper implements Serializable {
  25. private static final long serialVersionUID = 1L;
  26. /**
  27. * 主键
  28. */
  29. @TableId(value = "id", type = IdType.AUTO)
  30. private Integer id;
  31. /**
  32. * 文案内容
  33. */
  34. private String content;
  35. /**
  36. * 状态-{0.不可用 1.可用}
  37. */
  38. private Integer status;
  39. /**
  40. * 租户号
  41. */
  42. private Integer tenantId;
  43. /**
  44. * 乐观锁
  45. */
  46. @Version
  47. private Integer version;
  48. /**
  49. * 是否删除
  50. */
  51. @TableLogic
  52. private Integer isDeleted;
  53. /**
  54. * 创建人
  55. */
  56. @TableField(fill = FieldFill.INSERT)
  57. private String createdBy;
  58. /**
  59. * 创建时间
  60. */
  61. @TableField(fill = FieldFill.INSERT)
  62. private LocalDateTime createdTime;
  63. /**
  64. * 更新人
  65. */
  66. @TableField(fill = FieldFill.UPDATE)
  67. private String updatedBy;
  68. /**
  69. * 更新时间
  70. */
  71. @TableField(fill = FieldFill.UPDATE)
  72. private LocalDateTime updatedTime;
  73. }