增加住址字段

This commit is contained in:
Euni4U 2025-03-12 14:41:24 +08:00
parent 03e3b95bd0
commit 7528f43794
4 changed files with 15 additions and 0 deletions

View File

@ -96,4 +96,7 @@ public class InspectPatientPageReqVO extends PageParam {
@Schema(description = "总检状态")
private Integer inspectionStatus;
@Schema(description = "住址")
private String domicileaddress;
}

View File

@ -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;
}

View File

@ -86,4 +86,7 @@ public class InspectPatientSaveReqVO {
@Schema(description = "头像Base64")
private String headimage;
@Schema(description = "住址")
private String domicileaddress;
}

View File

@ -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;
}