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