| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- package com.cyksj.model.entity;
- import com.baomidou.mybatisplus.annotation.TableField;
- import com.ejlchina.searcher.bean.DbIgnore;
- import com.ejlchina.searcher.bean.SearchBean;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- /**
- * @author chan
- * @date 2022/9/26 4:58 PM
- */
- @Getter
- @Setter
- @SearchBean(tables = "goods_don")
- public class GoodsDon extends BaseEntity {
- /**
- * 商品录入人
- */
- private String writer;
- /**
- * 标签
- */
- private String tags;
- /**
- * 商品名称
- */
- private String title;
- /**
- * 缩略图
- */
- private String logo;
- /**
- * 背景图
- */
- private String img;
- /**
- * true 上架 / false 下架
- */
- private Boolean status;
- /**
- * true 存在 / false 删除
- */
- private Boolean deleted;
- /**
- * 详情
- */
- private String detail;
- /**
- * 描述
- */
- private String remark;
- private Integer type;
- /**
- * 分类
- * 1、AI 2、流媒体
- */
- private Integer category;
- /**
- * 二级分类
- * 虚物品 1邀请制 2非邀请制
- */
- private Integer secondType;
- private String banner;
- /**
- * 平台分销比例
- */
- private Integer rate;
- /**
- * 第二分销比例 不包含套餐
- */
- private Integer secondRate;
- /**
- * 排序
- */
- private Integer sortBy;
- /**
- * 虚拟销量
- */
- private Integer virtualSold;
- /**
- * 最小规格价格
- */
- private BigDecimal minPrice;
- /**
- * 最小规格价格月份
- */
- private Integer minMonths;
- /**
- * 最大规格价格
- */
- private BigDecimal maxPrice;
- /**
- * 最大规格价格月份
- */
- private Integer maxMonths;
- @TableField(exist = false)
- @DbIgnore
- private BigDecimal price;
- @TableField(exist = false)
- @DbIgnore
- private Integer soldNum;
- @TableField(exist = false)
- @DbIgnore
- private Integer accountCount;
- }
|