修改收费时间字段保存方法
This commit is contained in:
parent
cec584af38
commit
0c9508c81d
@ -1,5 +1,6 @@
|
|||||||
package cn.iocoder.yudao.module.inspect.controller.admin.inspectpatient.vo;
|
package cn.iocoder.yudao.module.inspect.controller.admin.inspectpatient.vo;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
|
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
@ -86,6 +87,8 @@ public class InspectPatientPageReqVO extends PageParam {
|
|||||||
private String inspectionOpinion;
|
private String inspectionOpinion;
|
||||||
|
|
||||||
@Schema(description = "收费时间")
|
@Schema(description = "收费时间")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss ", timezone = "GMT+8")
|
||||||
private LocalDateTime chargetime;
|
private LocalDateTime chargetime;
|
||||||
|
|
||||||
}
|
}
|
@ -110,6 +110,8 @@ public class InspectPatientRespVO {
|
|||||||
private String inspectionOpinion;
|
private String inspectionOpinion;
|
||||||
|
|
||||||
@Schema(description = "收费时间")
|
@Schema(description = "收费时间")
|
||||||
|
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss ", timezone = "GMT+8")
|
||||||
private LocalDateTime chargetime;
|
private LocalDateTime chargetime;
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user