| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- 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 detail;
- /**
- * 标签
- */
- private String tags;
- /**
- * true 上架 / false 下架
- */
- private Boolean status;
- /**
- * 车位数
- */
- private Integer num;
- /**
- * 价格
- */
- private BigDecimal price;
- /**
- * 月数
- */
- private Integer months;
- }
|