package com.cyksj.model.entity; import com.baomidou.mybatisplus.annotation.FieldStrategy; import com.baomidou.mybatisplus.annotation.TableField; import com.cyksj.model.views.GoodsDiscountPlusPurchaseRelationFrontView; import com.ejlchina.searcher.bean.DbField; import com.ejlchina.searcher.bean.DbIgnore; import com.ejlchina.searcher.bean.SearchBean; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.Getter; import lombok.Setter; import java.math.BigDecimal; import java.util.List; /** * @author chan * @date 2022/9/26 4:58 PM */ @Getter @Setter @SearchBean(tables = "goods_don_sku") @JsonInclude(JsonInclude.Include.NON_NULL) public class GoodsDonSku extends BaseEntity { private Long goodsId; private String subTitle; /** * 商品规格 ids */ private String specIds; /** * 重复校验规格ids */ private String dupSpecIds; /** * 商品规格 value */ private String specVal; /** * 商品规格 json */ private String specJson; /** * 规格说明信息 */ private String notifyText; /** * 规格框提示 */ private String smallMsg; /** * 商品预览图 */ private String picture; /** * 商品详情图 */ private String detail; /** * 标签 */ private String tags; /** * true 上架 / false 下架 */ private Boolean status; /** * 车位数 */ private Integer num; /** * 价格 */ private BigDecimal price; /** * 是否开启实物车票时长权益 */ private Boolean isBenefits; /** * 权益列表 */ private String benefitsList; /** * 月数 */ @TableField(updateStrategy = FieldStrategy.IGNORED) private Integer months; /** * 天数 */ @TableField(updateStrategy = FieldStrategy.IGNORED) private Integer days; @DbField("case when spec_val like '%月%' and spec_val not like '%年%' then 0 when spec_val like '%季%' then 1 when spec_val like '%半年%' then 2 when spec_val like '%年%' then 3 else 66 end") @TableField(exist = false) private Integer orderBy; /** * 加购规格 */ @DbIgnore @TableField(exist = false) private List dpSku; /** * 是否是优惠加购规格 */ private Boolean isDp; /** * 特定价格 */ private BigDecimal specificPrice; /** * 特定平台购买用户人群 */ private String specificGoodsIds; /** * 优惠加购商品规格展示 */ @DbIgnore @TableField(exist = false) private List dpSkuList; /** * 前端展示 */ @DbIgnore @TableField(exist = false) @JsonProperty("gname") private String gName; /** * 前端展示 */ @DbIgnore @TableField(exist = false) @JsonProperty("sname") private String sName; @DbIgnore @TableField(exist = false) private BigDecimal yhShopSkuPrice; }