|
@ -19,10 +19,13 @@ public class ServicePackageVO {
|
|
|
private String name;//服务包名称
|
|
|
private Integer num;//服务项数量
|
|
|
private Long price;//预售价//单位分
|
|
|
private String organization;//上架机构
|
|
|
private String organizationName;//上架机构名称
|
|
|
private String level;//服务包级别(0系统,1.医生,2团队,3社区,4区)
|
|
|
private String creater;//创建者
|
|
|
private Date createTime;//创建时间
|
|
|
private String introduce;//服务介绍
|
|
|
private String endIntroduce;//过期描述
|
|
|
private String status;//审核状态(预留字段0待审核,1审核通过,2审核不通过)
|
|
|
private Integer del;//是否有效(1有效,0失效)
|
|
|
|
|
@ -132,6 +135,14 @@ public class ServicePackageVO {
|
|
|
this.introduce = introduce;
|
|
|
}
|
|
|
|
|
|
public String getEndIntroduce() {
|
|
|
return endIntroduce;
|
|
|
}
|
|
|
|
|
|
public void setEndIntroduce(String endIntroduce) {
|
|
|
this.endIntroduce = endIntroduce;
|
|
|
}
|
|
|
|
|
|
public String getStatus() {
|
|
|
return status;
|
|
|
}
|
|
@ -155,4 +166,20 @@ public class ServicePackageVO {
|
|
|
public void setItems(List<SerivePackageItemVO> items) {
|
|
|
this.items = items;
|
|
|
}
|
|
|
|
|
|
public String getOrganization() {
|
|
|
return organization;
|
|
|
}
|
|
|
|
|
|
public void setOrganization(String organization) {
|
|
|
this.organization = organization;
|
|
|
}
|
|
|
|
|
|
public String getOrganizationName() {
|
|
|
return organizationName;
|
|
|
}
|
|
|
|
|
|
public void setOrganizationName(String organizationName) {
|
|
|
this.organizationName = organizationName;
|
|
|
}
|
|
|
}
|