package com.java110.po.resourceStoreType;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class ResourceStoreTypePo implements Serializable {
|
|
private String rstId;
|
private String name;
|
private String description;
|
private String storeId;
|
private String createTime;
|
private String statusCd = "0";
|
|
public String getRstId() {
|
return rstId;
|
}
|
|
public void setRstId(String rstId) {
|
this.rstId = rstId;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
public String getStoreId() {
|
return storeId;
|
}
|
|
public void setStoreId(String storeId) {
|
this.storeId = storeId;
|
}
|
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getStatusCd() {
|
return statusCd;
|
}
|
|
public void setStatusCd(String statusCd) {
|
this.statusCd = statusCd;
|
}
|
}
|