hongjli
2025-05-21 0f994c67ff258fb93aa85ae90200e3db2b5f97f4
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
package com.aps.job.param;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
public class ApsWorkOrderJobParam {
    @JsonProperty("PageIndex")
    private Integer pageIndex;
    @JsonProperty("PageSize")
    private Integer pageSize;
    @JsonProperty("DocList")
    private List<String> docList;
    @JsonProperty("ItemType")
    private List<String> itemType;
    @JsonProperty("OrgCode")
    private String orgCode;
    @JsonProperty("BeginDate")
    private String beginDate;
    @JsonProperty("EndDate")
    private String endDate;
    @JsonProperty("DocState")
    private List<Integer> docState;
    private Integer toPageIndex;
}