|
@ -78,47 +78,52 @@ public class ServicePackageDO extends UuidIdentityEntity implements Serializable
|
|
|
}
|
|
|
}
|
|
|
|
|
|
public enum Type {
|
|
|
rehabilitation("康复计划", "1");
|
|
|
private String name;
|
|
|
private String value;
|
|
|
|
|
|
Type(String name, String value) {
|
|
|
this.name = name;
|
|
|
this.value = value;
|
|
|
}
|
|
|
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
|
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
public String getValue() {
|
|
|
return value;
|
|
|
}
|
|
|
|
|
|
public void setValue(String value) {
|
|
|
this.value = value;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
private String provinceCode;
|
|
|
private String provinceName;
|
|
|
private String cityCode;
|
|
|
private String cityName;
|
|
|
private String saasId;
|
|
|
private String name;//服务包名称
|
|
|
private String type;//服务包类型
|
|
|
private Integer num;//服务项数量
|
|
|
private Long price;//预售价//单位分
|
|
|
private String level;//服务包级别(0系统,1.医生,2团队,3社区,4区)
|
|
|
private String levelCode;//关联code
|
|
|
private String creater;//创建者
|
|
|
private Date createTime;//创建时间
|
|
|
private String introduce;//服务介绍
|
|
|
private String status;//审核状态(预留字段0待审核,1审核通过,2审核不通过)
|
|
|
private Integer del;//是否有效(1有效,0失效)
|
|
|
|
|
|
private List<ServicePackageDetailsDO> detailsDOList;//服务项
|
|
|
public String getProvinceCode() {
|
|
|
return provinceCode;
|
|
|
}
|
|
|
|
|
|
public void setProvinceCode(String provinceCode) {
|
|
|
this.provinceCode = provinceCode;
|
|
|
}
|
|
|
|
|
|
public String getProvinceName() {
|
|
|
return provinceName;
|
|
|
}
|
|
|
|
|
|
public void setProvinceName(String provinceName) {
|
|
|
this.provinceName = provinceName;
|
|
|
}
|
|
|
|
|
|
public String getCityCode() {
|
|
|
return cityCode;
|
|
|
}
|
|
|
|
|
|
public void setCityCode(String cityCode) {
|
|
|
this.cityCode = cityCode;
|
|
|
}
|
|
|
|
|
|
public String getCityName() {
|
|
|
return cityName;
|
|
|
}
|
|
|
|
|
|
public void setCityName(String cityName) {
|
|
|
this.cityName = cityName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "saas_id")
|
|
|
public String getSaasId() {
|
|
@ -137,14 +142,6 @@ public class ServicePackageDO extends UuidIdentityEntity implements Serializable
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
public String getType() {
|
|
|
return type;
|
|
|
}
|
|
|
|
|
|
public void setType(String type) {
|
|
|
this.type = type;
|
|
|
}
|
|
|
|
|
|
public Integer getNum() {
|
|
|
return num;
|
|
|
}
|
|
@ -169,15 +166,6 @@ public class ServicePackageDO extends UuidIdentityEntity implements Serializable
|
|
|
this.level = level;
|
|
|
}
|
|
|
|
|
|
@Column(name = "level_code")
|
|
|
public String getLevelCode() {
|
|
|
return levelCode;
|
|
|
}
|
|
|
|
|
|
public void setLevelCode(String levelCode) {
|
|
|
this.levelCode = levelCode;
|
|
|
}
|
|
|
|
|
|
public String getCreater() {
|
|
|
return creater;
|
|
|
}
|
|
@ -218,13 +206,4 @@ public class ServicePackageDO extends UuidIdentityEntity implements Serializable
|
|
|
public void setDel(Integer del) {
|
|
|
this.del = del;
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
|
public List<ServicePackageDetailsDO> getDetailsDOList() {
|
|
|
return detailsDOList;
|
|
|
}
|
|
|
|
|
|
public void setDetailsDOList(List<ServicePackageDetailsDO> detailsDOList) {
|
|
|
this.detailsDOList = detailsDOList;
|
|
|
}
|
|
|
}
|