|
@@ -1,7 +1,10 @@
|
|
package com.boman.domain;
|
|
package com.boman.domain;
|
|
|
|
|
|
|
|
|
|
|
|
+import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Builder;
|
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
|
+import lombok.NoArgsConstructor;
|
|
|
|
|
|
import java.util.Date;
|
|
import java.util.Date;
|
|
|
|
|
|
@@ -9,10 +12,13 @@ import java.util.Date;
|
|
* 疫苗接种导入错误日志
|
|
* 疫苗接种导入错误日志
|
|
*/
|
|
*/
|
|
@Builder
|
|
@Builder
|
|
-public class YmjzImportErrorLog {
|
|
|
|
|
|
+@AllArgsConstructor
|
|
|
|
+@NoArgsConstructor
|
|
|
|
+public class YmjzImportErrorLog extends BaseEntity{
|
|
|
|
|
|
private Long id;
|
|
private Long id;
|
|
private String username;
|
|
private String username;
|
|
|
|
+ private String town;
|
|
private String place;
|
|
private String place;
|
|
private String vaccineName;
|
|
private String vaccineName;
|
|
private String jici;
|
|
private String jici;
|
|
@@ -24,6 +30,14 @@ public class YmjzImportErrorLog {
|
|
private String updateBy;
|
|
private String updateBy;
|
|
private Date updateTime;
|
|
private Date updateTime;
|
|
|
|
|
|
|
|
+ public String getTown() {
|
|
|
|
+ return town;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setTown(String town) {
|
|
|
|
+ this.town = town;
|
|
|
|
+ }
|
|
|
|
+
|
|
public Long getId() {
|
|
public Long getId() {
|
|
return id;
|
|
return id;
|
|
}
|
|
}
|
|
@@ -87,36 +101,4 @@ public class YmjzImportErrorLog {
|
|
public void setIsDel(String isDel) {
|
|
public void setIsDel(String isDel) {
|
|
this.isDel = isDel;
|
|
this.isDel = isDel;
|
|
}
|
|
}
|
|
-
|
|
|
|
- public String getCreateBy() {
|
|
|
|
- return createBy;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCreateBy(String createBy) {
|
|
|
|
- this.createBy = createBy;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Date getCreateTime() {
|
|
|
|
- return createTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setCreateTime(Date createTime) {
|
|
|
|
- this.createTime = createTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getUpdateBy() {
|
|
|
|
- return updateBy;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUpdateBy(String updateBy) {
|
|
|
|
- this.updateBy = updateBy;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public Date getUpdateTime() {
|
|
|
|
- return updateTime;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setUpdateTime(Date updateTime) {
|
|
|
|
- this.updateTime = updateTime;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|