package com.matrix.system.shopXcx.dto; import lombok.Data; import java.math.BigDecimal; /** * @author wzy * @date 2020-04-09 15:49 **/ @Data public class CreateSecKillDTO { /** * 秒杀信息id */ private Long id; /** * 地址id */ private Integer addressId; /** * 购买数量 */ private Integer count; /** * 店铺id */ private Long shopId; /** * 配送方式 */ private Integer shippingMethod; private BigDecimal price; private Integer goodsId; private String openId; }