| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package com.cyksj.model.entity;
- import lombok.Getter;
- import lombok.Setter;
- import java.math.BigDecimal;
- /**
- * @author chan
- * @date 2022/9/26 4:58 PM
- */
- @Getter
- @Setter
- public class GoodsDonSku extends BaseEntity {
- private Long goodsId;
- private String subTitle;
- /**
- * 商品规格 ids
- */
- private String specIds;
- /**
- * 商品规格 value
- */
- private String specVal;
- /**
- * 商品规格 json
- */
- private String specJson;
- /**
- * 规格说明信息
- */
- private String notifyText;
- /**
- * 商品预览图
- */
- private String picture;
- /**
- * 标签
- */
- private String tags;
- /**
- * true 上架 / false 下架
- */
- private Boolean status;
- /**
- * 车位数
- */
- private Integer num;
- /**
- * 价格
- */
- private BigDecimal price;
- /**
- * 月数
- */
- private Integer months;
- }
|