| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- package com.cyksj.model.manage.request;
- import lombok.Getter;
- import lombok.Setter;
- import javax.validation.constraints.NotNull;
- import java.math.BigDecimal;
- import java.util.List;
- /**
- * @author chan
- * @date 2022/9/27 5:28 PM
- */
- @Getter
- @Setter
- public class ReqGoodsSkuInsert {
- @NotNull(message = "请指定商品spu.")
- private Long goodsId;
- private List<ReqGoodsSkuSpec> specs;
- private List<Sku> skus;
- @Getter
- @Setter
- public static class Sku {
- /**
- * 商品规格 ids
- */
- private String specIds;
- /**
- * 副标题
- */
- private String subTitle;
- /**
- * 商品预览图
- */
- private String picture;
- /**
- * 商品详细图
- */
- private String detail;
- /**
- * 规格说明信息
- */
- private String notifyText;
- private String tags;
- private BigDecimal price;
- /**
- * 数量
- */
- private Integer num;
- /**
- * 月份
- */
- private Integer months;
- /**
- * 状态
- */
- private Boolean status;
- /**
- * 是否开启实物车票时长权益
- */
- private Boolean isBenefits;
- /**
- * 权益列表
- */
- private String benefitsList;
- }
- }
|