xin
2025-06-11 413747acee91a63265907a1af09600d7e9712963
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.oying.modules.sh.domain.dto;
 
import lombok.Data;
import io.swagger.annotations.ApiModelProperty;
 
/**
* @author lixin
* @date 2025-06-11
**/
@Data
public class OrderProductSnapshotQueryCriteria{
 
    @ApiModelProperty(value = "页码", example = "1")
    private Integer page = 1;
 
    @ApiModelProperty(value = "每页数据量", example = "10")
    private Integer size = 10;
 
    @ApiModelProperty(value = "订单编号")
    private String orderNum;
 
    @ApiModelProperty(value = "门店ID")
    private Long storeId;
 
    @ApiModelProperty(value = "商品ID")
    private Long productId;
 
    @ApiModelProperty(value = "商品编号")
    private String productCode;
 
    @ApiModelProperty(value = "条形码")
    private String productBarcode;
 
    @ApiModelProperty(value = "商品名称")
    private String productName;
 
    @ApiModelProperty(value = "商品标题")
    private String productTitle;
 
    @ApiModelProperty(value = "状态")
    private String payState;
}