GoodsDon.java 877 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.cyksj.model.entity;
  2. import com.ejlchina.searcher.bean.SearchBean;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. /**
  6. * @author chan
  7. * @date 2022/9/26 4:58 PM
  8. */
  9. @Getter
  10. @Setter
  11. @SearchBean(tables = "goods_don")
  12. public class GoodsDon extends BaseEntity {
  13. /**
  14. * 商品录入人
  15. */
  16. private String writer;
  17. /**
  18. * 标签
  19. */
  20. private String tags;
  21. /**
  22. * 商品名称
  23. */
  24. private String title;
  25. /**
  26. * 缩略图
  27. */
  28. private String logo;
  29. /**
  30. * 背景图
  31. */
  32. private String img;
  33. /**
  34. * true 上架 / false 下架
  35. */
  36. private Boolean status;
  37. /**
  38. * true 存在 / false 删除
  39. */
  40. private Boolean deleted;
  41. /**
  42. * 详情
  43. */
  44. private String detail;
  45. /**
  46. * 描述
  47. */
  48. private String remark;
  49. private Integer type;
  50. }