| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.cyksj.model.views;
- import com.ejlchina.searcher.bean.SearchBean;
- import com.fasterxml.jackson.annotation.JsonIgnore;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- /*
- *项目名: netflix
- *文件名: GoodsDonFrontSkuView
- *创建者: JavaZou
- *创建时间:2023/4/6 17:58
- */
- @Getter
- @Setter
- @SearchBean(tables = "goods_don_sku")
- public class GoodsDonFrontSkuView {
- private Long id;
- private Long goodsId;
- /**
- * 商品规格 ids
- */
- private String specIds;
- /**
- * 商品规格 value
- */
- private String specVal;
- /**
- * 商品规格 json
- */
- private String specJson;
- /**
- * true 上架 / false 下架
- */
- @JsonIgnore
- private Boolean status;
- /**
- * 价格
- */
- private BigDecimal price;
- /**
- * 月数
- */
- private Integer months;
- /**
- * 天数
- */
- private Integer days;
- private String notifyText;
- }
|