Browse Source

Merge branch 'dev' of chenweida/patient-co-management into dev

chenweida 7 years ago
parent
commit
b8eb8bb86f

+ 9 - 0
common/common-entity/src/main/java/com/yihu/wlyy/entity/service/ServiceItem.java

@ -16,6 +16,7 @@ public class ServiceItem extends IdEntity {
    private String code; //非业务主键
    private String code; //非业务主键
    private String serviceCode;// 所属服务code 关联表 wlyy_Service
    private String serviceCode;// 所属服务code 关联表 wlyy_Service
    private String name;       //	服务名称
    private String name;       //	服务名称
    private String subName;//副标题
    private String image;   //图片的url
    private String image;   //图片的url
    private Integer type;   // 服务类型 1 热线电话 2 中医体检
    private Integer type;   // 服务类型 1 热线电话 2 中医体检
    private String mobile;  //服务项对应的热线电话
    private String mobile;  //服务项对应的热线电话
@ -148,4 +149,12 @@ public class ServiceItem extends IdEntity {
    public void setRemark(String remark) {
    public void setRemark(String remark) {
        this.remark = remark;
        this.remark = remark;
    }
    }
    public String getSubName() {
        return subName;
    }
    public void setSubName(String subName) {
        this.subName = subName;
    }
}
}