TaShareContent.java 1.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. package com.huiju.estateagents.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import com.baomidou.mybatisplus.annotation.IdType;
  4. import com.baomidou.mybatisplus.annotation.TableId;
  5. import java.time.LocalDateTime;
  6. import java.io.Serializable;
  7. import lombok.Data;
  8. import lombok.EqualsAndHashCode;
  9. import lombok.experimental.Accessors;
  10. /**
  11. * <p>
  12. *
  13. * </p>
  14. *
  15. * @author jobob
  16. * @since 2019-09-21
  17. */
  18. @Data
  19. @EqualsAndHashCode(callSuper = false)
  20. @Accessors(chain = true)
  21. @TableName("ta_share_content")
  22. public class TaShareContent implements Serializable {
  23. private static final long serialVersionUID = 1L;
  24. /**
  25. * 分享内容id
  26. */
  27. @TableId(value = "share_content_id", type = IdType.AUTO)
  28. private Integer shareContentId;
  29. /**
  30. * 分享内容模板
  31. */
  32. private String shareContentModel;
  33. /**
  34. * 目标id
  35. */
  36. private String targetId;
  37. /**
  38. * 分享标题
  39. */
  40. private String shareContentTitle;
  41. /**
  42. * 分享图片
  43. */
  44. private String shareContentImg;
  45. /**
  46. * 分享内容类型
  47. */
  48. private String shareContentType;
  49. /**
  50. * 状态
  51. */
  52. private Integer status;
  53. /**
  54. * 创建时间
  55. */
  56. private LocalDateTime createDate;
  57. /**
  58. * 公司id
  59. */
  60. private Integer orgId;
  61. }