This commit is contained in:
Lemon
2024-04-09 10:16:56 +08:00
15 changed files with 390 additions and 102 deletions

View File

@@ -6,4 +6,13 @@ import lombok.Setter;
@Getter
@Setter
public class QueryOperatorInfoDTO {
/**
* 查询页码 默认为1
*/
private int PageNo = 1;
/**
* 每页数量 默认为50
*/
private int PageSize = 50;
}

View File

@@ -10,6 +10,12 @@ public class CommonParamsDTO {
@JsonProperty(value = "OperatorID")
private String operatorID;
/**
* 数据请求方的标识 请求方组织机构代码九位
*/
@JsonProperty(value = "PlatformID")
private String platformID;
@JsonProperty(value = "Data")
private String data;