增加住址字段
This commit is contained in:
parent
03e3b95bd0
commit
7528f43794
@ -96,4 +96,7 @@ public class InspectPatientPageReqVO extends PageParam {
|
||||
@Schema(description = "总检状态")
|
||||
private Integer inspectionStatus;
|
||||
|
||||
@Schema(description = "住址")
|
||||
private String domicileaddress;
|
||||
|
||||
}
|
@ -116,4 +116,8 @@ public class InspectPatientRespVO {
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss ", timezone = "GMT+8")
|
||||
private LocalDateTime chargetime;
|
||||
|
||||
@Schema(description = "住址")
|
||||
@ExcelProperty("住址")
|
||||
private String domicileaddress;
|
||||
|
||||
}
|
@ -86,4 +86,7 @@ public class InspectPatientSaveReqVO {
|
||||
|
||||
@Schema(description = "头像Base64")
|
||||
private String headimage;
|
||||
|
||||
@Schema(description = "住址")
|
||||
private String domicileaddress;
|
||||
}
|
@ -146,4 +146,9 @@ public class InspectPatientDO {
|
||||
@TableField("chargetime")
|
||||
@JsonFormat(pattern = "yyyy-MM-dd yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime chargetime;
|
||||
/**
|
||||
* 住址
|
||||
*/
|
||||
@TableField("domicileaddress")
|
||||
private String domicileaddress;
|
||||
}
|
Loading…
Reference in New Issue
Block a user