外呼记录导出时间格式

This commit is contained in:
zhangheng 2024-12-18 09:18:53 +08:00
parent 5ad8001621
commit a208b9466d

View File

@ -45,9 +45,9 @@ public class UploadRobotPublishRecordVo {
/** /**
* 就诊时间格式yyyy-MM-dd HH:mm:ss * 就诊时间格式yyyy-MM-dd HH:mm:ss
*/ */
@ApiModelProperty(value = "就诊时间格式yyyy-MM-dd HH:mm:ss") @ApiModelProperty(value = "就诊时间格式yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd")
@Excel(name = "就诊时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") @Excel(name = "就诊时间", width = 30, dateFormat = "yyyy-MM-dd")
private LocalDateTime visitDate; private LocalDateTime visitDate;
/** /**
@ -120,7 +120,7 @@ public class UploadRobotPublishRecordVo {
/** /**
* 执行时间格式HH:mm * 执行时间格式HH:mm
*/ */
@ApiModelProperty(value = "执行时间,格式:HH:mm") @ApiModelProperty(value = "执行时间,格式:yyyy-MM-dd HH:mm:ss")
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@Excel(name = "随访时间", width = 30, dateFormat = "yyyy-MM-dd") @Excel(name = "随访时间", width = 30, dateFormat = "yyyy-MM-dd")
private LocalDateTime nodePlanTime; private LocalDateTime nodePlanTime;