UserRecommendGoodsFrontView.java 818 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package com.cyksj.model.views;
  2. import com.ejlchina.searcher.bean.SearchBean;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. import java.math.BigDecimal;
  6. /*
  7. *项目名: netflix
  8. *文件名: UserRecommendGoodsFrontView
  9. *创建者: JavaZou
  10. *创建时间:2023/7/17 16:34
  11. */
  12. @Getter
  13. @Setter
  14. @SearchBean(tables = "goods_don g"
  15. , where = "g.type = 2 and g.deleted is true and g.status is true")
  16. public class UserRecommendGoodsFrontView {
  17. private Long goodsId;
  18. private String title;
  19. private String logo;
  20. private String img;
  21. private String tags;
  22. private Integer type;
  23. private Integer months;
  24. private Integer days;
  25. private BigDecimal price;
  26. private String ogTitle;
  27. private String ogDescription;
  28. private String description;
  29. private String ogKeywords;
  30. private String detailRoute;
  31. }