file实体的UUID属性添加set方法

This commit is contained in:
wyldusername 2019-10-17 17:50:33 +08:00
parent adc0158084
commit b19885df34
1 changed files with 4 additions and 0 deletions

View File

@ -75,6 +75,10 @@ public class BaseFile extends BaseEntity {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public String getRelObjType() {
return this.relObjType;
}