|
@ -1,10 +1,12 @@
|
|
|
package com.yihu.jw.entity.care.lifeCare;
|
|
|
|
|
|
import com.yihu.jw.entity.UuidIdentityEntity;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import javax.persistence.Transient;
|
|
|
import java.math.BigDecimal;
|
|
|
|
|
|
/**
|
|
@ -26,6 +28,8 @@ public class LifeCareItemDictDO extends UuidIdentityEntity{
|
|
|
private String serveStandard;//服务标准标准
|
|
|
private String orgCode;//服务机构
|
|
|
private String orgName;//服务机构名称
|
|
|
private String orgPhoto;
|
|
|
private String address;
|
|
|
|
|
|
public String getCode() {
|
|
|
return code;
|
|
@ -123,4 +127,22 @@ public class LifeCareItemDictDO extends UuidIdentityEntity{
|
|
|
public void setOrgName(String orgName) {
|
|
|
this.orgName = orgName;
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
|
public String getOrgPhoto() {
|
|
|
return orgPhoto;
|
|
|
}
|
|
|
|
|
|
public void setOrgPhoto(String orgPhoto) {
|
|
|
this.orgPhoto = orgPhoto;
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
|
public String getAddress() {
|
|
|
return address;
|
|
|
}
|
|
|
|
|
|
public void setAddress(String address) {
|
|
|
this.address = address;
|
|
|
}
|
|
|
}
|