1.代客下单规格修改接口

This commit is contained in:
2024-08-13 09:48:03 +08:00
parent 7f1c028fed
commit fd5b79d6ec
4 changed files with 85 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
package cn.ysk.cashier.dto.shoptable;
import lombok.Data;
import javax.validation.constraints.Min;
import javax.validation.constraints.NotNull;
@Data
public class UpdateCartDTO {
@NotNull
private Integer cartId;
@NotNull
private Integer skuId;
@NotNull
private Integer productId;
@NotNull
private Integer shopId;
@NotNull
@Min(0)
private Integer num;
}