修复涉嫌冒用身份保存不了的问题
This commit is contained in:
parent
04bebcb31e
commit
e05e4d6293
|
|
@ -10,6 +10,7 @@ import lombok.Data;
|
|||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
|
|
@ -108,8 +109,8 @@ public class ESusNateVo extends SuperEntity implements Serializable {
|
|||
*/
|
||||
@ApiModelProperty(value = "作出决定日期")
|
||||
// @JsonSerialize(using = LocalDateTimeStringSerializer.class)
|
||||
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date judDate;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime judDate;
|
||||
|
||||
/**
|
||||
* 登记机关(CA11)
|
||||
|
|
@ -134,16 +135,16 @@ public class ESusNateVo extends SuperEntity implements Serializable {
|
|||
*/
|
||||
@ApiModelProperty(value = "公告日期")
|
||||
// @JsonSerialize(using = LocalDateTimeStringSerializer.class)
|
||||
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date noticeDate;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime noticeDate;
|
||||
|
||||
/**
|
||||
* 冒名登记时间
|
||||
*/
|
||||
@ApiModelProperty(value = "冒名登记时间")
|
||||
// @JsonSerialize(using = LocalDateTimeStringSerializer.class)
|
||||
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date regTime;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime regTime;
|
||||
|
||||
/**
|
||||
* 冒名登记事项
|
||||
|
|
@ -168,16 +169,16 @@ public class ESusNateVo extends SuperEntity implements Serializable {
|
|||
*/
|
||||
@ApiModelProperty(value = "公告期自")
|
||||
// @JsonSerialize(using = LocalDateTimeStringSerializer.class)
|
||||
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date noticeFrom;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime noticeFrom;
|
||||
|
||||
/**
|
||||
* 公告期至
|
||||
*/
|
||||
@ApiModelProperty(value = "公告期至")
|
||||
// @JsonSerialize(using = LocalDateTimeStringSerializer.class)
|
||||
// @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private Date noticeTo;
|
||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||
private LocalDateTime noticeTo;
|
||||
|
||||
/**
|
||||
* 责任人姓名
|
||||
|
|
|
|||
Loading…
Reference in New Issue