Commit 9f2eb067 by guojuxing

添加商品资源开关字段,在详情

parent f82f93f4
......@@ -38,6 +38,11 @@ public class EnterpriseInfo implements Serializable{
private String serviceName;
/**
* 商品资源 1:有 0:无
*/
private Integer goodsResource;
public String getEnterpriseName() {
return enterpriseName;
......@@ -118,4 +123,12 @@ public class EnterpriseInfo implements Serializable{
public void setServiceName(String serviceName) {
this.serviceName = serviceName;
}
public Integer getGoodsResource() {
return goodsResource;
}
public void setGoodsResource(Integer goodsResource) {
this.goodsResource = goodsResource;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment