init2
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.timeline.file.entity;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class FileHash {
|
||||
private Integer id;
|
||||
private String instanceId;
|
||||
private String hashValue;
|
||||
private Integer isDeleted;
|
||||
|
||||
public FileHash(String instanceId, String hashValue) {
|
||||
this.id = null;
|
||||
this.instanceId = instanceId;
|
||||
this.hashValue = hashValue;
|
||||
this.isDeleted = 0;
|
||||
}
|
||||
}
|
||||
@@ -15,4 +15,5 @@ public class ImageInfo {
|
||||
private String contentType;
|
||||
private String userId;
|
||||
private Integer isDeleted;
|
||||
private LocalDateTime updateTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user