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;
|
|
private Integer toPageIndex;
|
}
|