|
@ -48,6 +48,8 @@ public class ServicePackageItemDO extends UuidIdentityEntity implements java.io.
|
|
|
private String doctor;//服务者
|
|
|
private String doctorName;//服务者姓名
|
|
|
|
|
|
private ServiceItemConfig itemConfig;//配置执行计划
|
|
|
|
|
|
@Column(name = "service_package_item_id")
|
|
|
public String getServicePackageItemId() {
|
|
|
return servicePackageItemId;
|
|
@ -269,4 +271,13 @@ public class ServicePackageItemDO extends UuidIdentityEntity implements java.io.
|
|
|
public void setDoctorName(String doctorName) {
|
|
|
this.doctorName = doctorName;
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
|
public ServiceItemConfig getItemConfig() {
|
|
|
return itemConfig;
|
|
|
}
|
|
|
|
|
|
public void setItemConfig(ServiceItemConfig itemConfig) {
|
|
|
this.itemConfig = itemConfig;
|
|
|
}
|
|
|
}
|