长者信息增加入住时间
This commit is contained in:
parent
5338bea3c9
commit
785641d8fd
|
|
@ -239,4 +239,11 @@ public class ElderInfoEntity implements Serializable {
|
|||
//需要变更谁的信息 zz长者 jhr监护人
|
||||
private String modifyType;
|
||||
|
||||
/**
|
||||
* 长者入住时间
|
||||
*/
|
||||
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private Date checkinTime;
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,17 +1,18 @@
|
|||
package com.nu.modules.elderinfo.entity;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import lombok.Data;
|
||||
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
import org.jeecg.common.aspect.annotation.Dict;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import lombok.experimental.Accessors;
|
||||
import org.jeecg.common.aspect.annotation.Dict;
|
||||
import org.jeecgframework.poi.excel.annotation.Excel;
|
||||
import org.springframework.format.annotation.DateTimeFormat;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @Description: 客户信息
|
||||
|
|
@ -362,4 +363,11 @@ public class ElderInfo implements Serializable {
|
|||
@Dict(dictTable = "nu_biz_employees_info",dicCode = "id",dicText = "name")
|
||||
private java.lang.String orderly;
|
||||
|
||||
/**
|
||||
* 长者入住时间
|
||||
*/
|
||||
@JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
|
||||
@DateTimeFormat(pattern = "yyyy-MM-dd")
|
||||
private Date checkinTime;
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue