19 lines
396 B
Java
19 lines
396 B
Java
|
|
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;
|
||
|
|
}
|
||
|
|
}
|