Commit 9952ff1a authored by 蔡镇泽's avatar 蔡镇泽

格式化日期

parent 6af211cb
package com.hungraim.ltc.pojo.vo.assessment;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import java.util.Date;
......@@ -21,6 +22,7 @@ public class TaskDistributionVO {
//失能人员姓名 ch_disable_info
private String realName;
//申请日期
@JsonFormat(pattern = "yyyy-MM-dd")
private Date fcd;
//失能人员身份证号码
private String certiCode;
......@@ -43,10 +45,13 @@ public class TaskDistributionVO {
//评定人员手机号码
private String empTel;
//任务分配时间
@JsonFormat(pattern = "yyyy-MM-dd")
private Date assignTime;
//任务接受时间
@JsonFormat(pattern = "yyyy-MM-dd")
private Date acceptTime;
//任务完成时间
@JsonFormat(pattern = "yyyy-MM-dd")
private Date finishTime;
//任务状态
private Integer taskStatus;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment