xin
7 days ago 295e8df5e73a9365f4ddfbf2bb3f82cbb494baa5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.oying.modules.sh.domain.request;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import javax.validation.constraints.NotNull;
 
/**
 * @author xin
 * @description
 * @date 2025/7/2 00:01
 */
@Getter
@Setter
public class ProductOrder {
 
    @ApiModelProperty(value = "商品ID")
    @NotNull
    private Long productId;
    @ApiModelProperty(value = "数量")
    @NotNull
    private Integer count;
}