package com.landtool.lanbase.modules.res.entity;
|
|
public class Res_Storage_Relation {
|
private int resourceid;
|
private String filename;
|
private int isgeneration;
|
private int isstorage;
|
public int getResourceid() {
|
return resourceid;
|
}
|
public void setResourceid(int resourceid) {
|
this.resourceid = resourceid;
|
}
|
public String getFilename() {
|
return filename;
|
}
|
public void setFilename(String filename) {
|
this.filename = filename;
|
}
|
public int getIsgeneration() {
|
return isgeneration;
|
}
|
public void setIsgeneration(int isgeneration) {
|
this.isgeneration = isgeneration;
|
}
|
public int getIsstorage() {
|
return isstorage;
|
}
|
public void setIsstorage(int isstorage) {
|
this.isstorage = isstorage;
|
}
|
|
|
}
|