部分接口参数调整
This commit is contained in:
+5
@@ -31,4 +31,9 @@ public class AnYanAedParam {
|
|||||||
*/
|
*/
|
||||||
@Schema(title = "pageSize")
|
@Schema(title = "pageSize")
|
||||||
private Integer pageSize = 9999;
|
private Integer pageSize = 9999;
|
||||||
|
/**
|
||||||
|
* pageType
|
||||||
|
*/
|
||||||
|
@Schema(title = "pageType")
|
||||||
|
private String pageType = "plus";
|
||||||
}
|
}
|
||||||
|
|||||||
+3
-4
@@ -8,10 +8,6 @@ import lombok.Data;
|
|||||||
@Schema(title = "安眼系统体检数据接口参数", description = "安眼系统体检数据接口参数")
|
@Schema(title = "安眼系统体检数据接口参数", description = "安眼系统体检数据接口参数")
|
||||||
public class AnYanHealthCheckNewParam {
|
public class AnYanHealthCheckNewParam {
|
||||||
|
|
||||||
@JsonProperty("workUnit")
|
|
||||||
@Schema(name = "单位名称")
|
|
||||||
private String workUnit;
|
|
||||||
|
|
||||||
@JsonProperty("name")
|
@JsonProperty("name")
|
||||||
@Schema(name = "员工姓名")
|
@Schema(name = "员工姓名")
|
||||||
private String name;
|
private String name;
|
||||||
@@ -39,4 +35,7 @@ public class AnYanHealthCheckNewParam {
|
|||||||
@JsonProperty("pageSize")
|
@JsonProperty("pageSize")
|
||||||
@Schema(name = "页码")
|
@Schema(name = "页码")
|
||||||
private Integer pageSize = 10;
|
private Integer pageSize = 10;
|
||||||
|
|
||||||
|
@Schema(title = "pageType")
|
||||||
|
private String pageType = "plus";
|
||||||
}
|
}
|
||||||
|
|||||||
+3
@@ -39,4 +39,7 @@ public class AnYanHealthRoomParam {
|
|||||||
@JsonProperty("successFlag")
|
@JsonProperty("successFlag")
|
||||||
@Schema(name = "是否成功空降 目前各个小屋没有这个值")
|
@Schema(name = "是否成功空降 目前各个小屋没有这个值")
|
||||||
private String successFlag;
|
private String successFlag;
|
||||||
|
|
||||||
|
@Schema(title = "pageType")
|
||||||
|
private String pageType = "plus";
|
||||||
}
|
}
|
||||||
|
|||||||
+3
@@ -31,4 +31,7 @@ public class CareUserDetailsParam {
|
|||||||
*/
|
*/
|
||||||
@Schema(title = "pageSize")
|
@Schema(title = "pageSize")
|
||||||
private Integer pageSize = 10;
|
private Integer pageSize = 10;
|
||||||
|
|
||||||
|
@Schema(title = "pageType")
|
||||||
|
private String pageType = "plus";
|
||||||
}
|
}
|
||||||
|
|||||||
+3
@@ -31,4 +31,7 @@ public class EmergencyContactParam {
|
|||||||
*/
|
*/
|
||||||
@Schema(title = "pageSize")
|
@Schema(title = "pageSize")
|
||||||
private Integer pageSize = 10;
|
private Integer pageSize = 10;
|
||||||
|
|
||||||
|
@Schema(title = "pageType")
|
||||||
|
private String pageType = "plus";
|
||||||
}
|
}
|
||||||
|
|||||||
+3
@@ -64,6 +64,9 @@ public class HealthRoomDTO {
|
|||||||
@Schema(title = "每页数量")
|
@Schema(title = "每页数量")
|
||||||
private Integer pageSize;
|
private Integer pageSize;
|
||||||
|
|
||||||
|
@Schema(title = "pageType")
|
||||||
|
private String pageType = "plus";
|
||||||
|
|
||||||
public HealthRoomDTO() {
|
public HealthRoomDTO() {
|
||||||
Date date = new Date();
|
Date date = new Date();
|
||||||
this.checkInDateBegin = DateUtil.beginOfYear(date);
|
this.checkInDateBegin = DateUtil.beginOfYear(date);
|
||||||
|
|||||||
+3
@@ -46,4 +46,7 @@ public class HealthSignListParam {
|
|||||||
*/
|
*/
|
||||||
@Schema(title = "pageSize")
|
@Schema(title = "pageSize")
|
||||||
private Integer pageSize = 10;
|
private Integer pageSize = 10;
|
||||||
|
|
||||||
|
@Schema(title = "pageType")
|
||||||
|
private String pageType = "plus";
|
||||||
}
|
}
|
||||||
|
|||||||
+3
@@ -58,6 +58,9 @@ public class MedicalAbnormalDTO {
|
|||||||
@Schema(title = "每页数量")
|
@Schema(title = "每页数量")
|
||||||
private Integer pageSize;
|
private Integer pageSize;
|
||||||
|
|
||||||
|
@Schema(title = "pageType")
|
||||||
|
private String pageType = "plus";
|
||||||
|
|
||||||
public MedicalAbnormalDTO() {
|
public MedicalAbnormalDTO() {
|
||||||
Date date = new Date();
|
Date date = new Date();
|
||||||
this.checkInDateBegin = DateUtil.beginOfYear(date);
|
this.checkInDateBegin = DateUtil.beginOfYear(date);
|
||||||
|
|||||||
Reference in New Issue
Block a user