@@ -29,7 +29,7 @@ public class ImportLogModel implements Serializable{
29
29
@ Id
30
30
@ GeneratedValue (strategy = GenerationType .SEQUENCE , generator = "import_log_id_seq" )
31
31
private Integer id ;
32
- private String sourcefileid ;
32
+ private String resource_uuid ;
33
33
private Integer record_quantity ;
34
34
private String updated_by ;
35
35
private Integer import_process_duration_ms ;
@@ -41,12 +41,7 @@ public Integer getId() {
41
41
public void setId (Integer id ) {
42
42
this .id = id ;
43
43
}
44
- public String getSourcefileid () {
45
- return sourcefileid ;
46
- }
47
- public void setSourcefileid (String sourcefileid ) {
48
- this .sourcefileid = sourcefileid ;
49
- }
44
+
50
45
public Integer getRecord_quantity () {
51
46
return record_quantity ;
52
47
}
@@ -75,9 +70,18 @@ public void setEvent_end_date_time(Date event_end_date_time) {
75
70
public String toString () {
76
71
return new ToStringBuilder (this ).
77
72
append ("id" , id ).
78
- append ("sourceFileId " , sourcefileid ).
73
+ append ("resource_uuid " , resource_uuid ).
79
74
append ("recordQuantity" , record_quantity ).
80
75
append ("updated_by" , updated_by ).
81
76
toString ();
82
77
}
78
+ public String getResource_uuid () {
79
+ return resource_uuid ;
80
+ }
81
+ public void setResource_uuid (String resource_uuid ) {
82
+ this .resource_uuid = resource_uuid ;
83
+ }
84
+ public static long getSerialversionuid () {
85
+ return serialVersionUID ;
86
+ }
83
87
}
0 commit comments