zhanghl
2025-04-17 11000bf4837f245824d88fc786e0ec8991f46b9e
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
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 String pageIndex;
    @JsonProperty("PageSize")
    private String 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;
 
}