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