tjx
2025-10-30 2ecae81fb3ab4057d367650045acc6697567c765
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
43
package com.gs.xiaomi.dto;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class BCS101ResponseBody {
 
    /**
     * SN列表
     */
    @JsonProperty("snList")
    private List<SnListItemDto> snList;
 
    @JsonProperty("reelList")
    private List<String> reelList;
 
    @JsonProperty("cartonList")
    private List<String> cartonList;
 
    @JsonProperty("currentPage")
    private Integer currentPage;
 
    @JsonProperty("pageSize")
    private Integer pageSize;
 
    @JsonProperty("totalPage")
    private Integer totalPage;
 
    @JsonProperty("productionOrder")
    private String productionOrder;
 
    @JsonProperty("productionLine")
    private String productionLine;
 
    @JsonProperty("productionTime")
    private String productionTime;
 
    @JsonProperty("productionQty")
    private Integer productionQty;
}