|
@@ -1,6 +1,7 @@
|
|
|
package com.boman.domain;
|
|
|
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import lombok.AllArgsConstructor;
|
|
|
import lombok.Builder;
|
|
|
import lombok.EqualsAndHashCode;
|
|
@@ -22,12 +23,15 @@ public class YmjzImportErrorLog extends BaseEntity{
|
|
|
private String place;
|
|
|
private String vaccineName;
|
|
|
private String jici;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date vaccinationTime;
|
|
|
private String vaccinationPlace;
|
|
|
private String isDel;
|
|
|
private String createBy;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date createTime;
|
|
|
private String updateBy;
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
|
private Date updateTime;
|
|
|
|
|
|
public String getTown() {
|