parent
2ddf0e30d1
commit
cddffabeba
@ -1,29 +0,0 @@
|
|||||||
package cn.iocoder.mall.order.api.dto;
|
|
||||||
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.experimental.Accessors;
|
|
||||||
|
|
||||||
import javax.validation.constraints.Max;
|
|
||||||
import javax.validation.constraints.NotNull;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @author Sin
|
|
||||||
* @time 2019-03-17 09:37
|
|
||||||
*/
|
|
||||||
@Data
|
|
||||||
@Accessors(chain = true)
|
|
||||||
public class OrderCreateItemDTO {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* 商品编号
|
|
||||||
*/
|
|
||||||
@NotNull
|
|
||||||
private Integer skuId;
|
|
||||||
/**
|
|
||||||
* 数量
|
|
||||||
*/
|
|
||||||
@NotNull
|
|
||||||
@Max(value = 1000)
|
|
||||||
private Integer quantity;
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in new issue