This commit is contained in:
jiangh277
2025-08-04 16:51:13 +08:00
parent f8fb9b561c
commit eba0eb085e
41 changed files with 451 additions and 73 deletions

View File

@@ -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;
}
}