1 changed files with 34 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||||
|
package io.xtfs.jwebfs.bean; |
||||
|
|
||||
|
/** |
||||
|
* 文件实体 |
||||
|
*/ |
||||
|
public class WbFile { |
||||
|
private Integer id; //
|
||||
|
private String filenmae; // 文件名
|
||||
|
private String filehash; // 文件hash
|
||||
|
|
||||
|
public Integer getId() { |
||||
|
return id; |
||||
|
} |
||||
|
|
||||
|
public void setId(Integer id) { |
||||
|
this.id = id; |
||||
|
} |
||||
|
|
||||
|
public String getFilenmae() { |
||||
|
return filenmae; |
||||
|
} |
||||
|
|
||||
|
public void setFilenmae(String filenmae) { |
||||
|
this.filenmae = filenmae; |
||||
|
} |
||||
|
|
||||
|
public String getFilehash() { |
||||
|
return filehash; |
||||
|
} |
||||
|
|
||||
|
public void setFilehash(String filehash) { |
||||
|
this.filehash = filehash; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue