| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- 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;
- @JsonIgnore
- private Boolean isHide;
- /**
- * 价格
- */
- private BigDecimal price;
- /**
- * 月数
- */
- private Integer months;
- private String notifyText;
- }
|