| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- package com.cyksj.model.views;
- import com.ejlchina.searcher.bean.SearchBean;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- /*
- *项目名: netflix
- *文件名: UserRecommendGoodsFrontView
- *创建者: JavaZou
- *创建时间:2023/7/17 16:34
- */
- @Getter
- @Setter
- @SearchBean(tables = "goods_don g"
- , where = "g.type = 2 and g.deleted is true and g.status is true")
- public class UserRecommendGoodsFrontView {
- private Long goodsId;
- private String title;
- private String logo;
- private String img;
- private String tags;
- private Integer type;
- private Integer months;
- private Integer days;
- private BigDecimal price;
- private String ogTitle;
- private String ogDescription;
- private String description;
- private String ogKeywords;
- private String detailRoute;
- }
|