|
@ -0,0 +1,116 @@
|
|
|
package com.yihu.jw.entity.base.processGuidance;
|
|
|
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithCreateTime;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
|
|
|
/**
|
|
|
* Created by yeshijie on 2022/11/23.
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "base_patient_process_guidance")
|
|
|
public class BasePatientProcessGuidanceDO extends UuidIdentityEntityWithCreateTime {
|
|
|
|
|
|
private String guidanceId;//预设流程id
|
|
|
private String patient;//
|
|
|
private String name;//就诊人姓名
|
|
|
private String idcard;//身份证
|
|
|
private Double fee;//挂号费
|
|
|
private String orgAddress;//医院地址
|
|
|
private String registerTime;//挂号时间
|
|
|
private String deptCode;//科室编码
|
|
|
private String deptName;//科室名称
|
|
|
private String deptAddress;//科室地址
|
|
|
|
|
|
@Column(name = "guidance_id")
|
|
|
public String getGuidanceId() {
|
|
|
return guidanceId;
|
|
|
}
|
|
|
|
|
|
public void setGuidanceId(String guidanceId) {
|
|
|
this.guidanceId = guidanceId;
|
|
|
}
|
|
|
|
|
|
@Column(name = "patient")
|
|
|
public String getPatient() {
|
|
|
return patient;
|
|
|
}
|
|
|
|
|
|
public void setPatient(String patient) {
|
|
|
this.patient = patient;
|
|
|
}
|
|
|
|
|
|
@Column(name = "name")
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
|
|
|
|
public void setName(String name) {
|
|
|
this.name = name;
|
|
|
}
|
|
|
|
|
|
@Column(name = "idcard")
|
|
|
public String getIdcard() {
|
|
|
return idcard;
|
|
|
}
|
|
|
|
|
|
public void setIdcard(String idcard) {
|
|
|
this.idcard = idcard;
|
|
|
}
|
|
|
|
|
|
@Column(name = "fee")
|
|
|
public Double getFee() {
|
|
|
return fee;
|
|
|
}
|
|
|
|
|
|
public void setFee(Double fee) {
|
|
|
this.fee = fee;
|
|
|
}
|
|
|
|
|
|
@Column(name = "org_address")
|
|
|
public String getOrgAddress() {
|
|
|
return orgAddress;
|
|
|
}
|
|
|
|
|
|
public void setOrgAddress(String orgAddress) {
|
|
|
this.orgAddress = orgAddress;
|
|
|
}
|
|
|
|
|
|
@Column(name = "register_time")
|
|
|
public String getRegisterTime() {
|
|
|
return registerTime;
|
|
|
}
|
|
|
|
|
|
public void setRegisterTime(String registerTime) {
|
|
|
this.registerTime = registerTime;
|
|
|
}
|
|
|
|
|
|
@Column(name = "dept_code")
|
|
|
public String getDeptCode() {
|
|
|
return deptCode;
|
|
|
}
|
|
|
|
|
|
public void setDeptCode(String deptCode) {
|
|
|
this.deptCode = deptCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "dept_name")
|
|
|
public String getDeptName() {
|
|
|
return deptName;
|
|
|
}
|
|
|
|
|
|
public void setDeptName(String deptName) {
|
|
|
this.deptName = deptName;
|
|
|
}
|
|
|
|
|
|
@Column(name = "dept_address")
|
|
|
public String getDeptAddress() {
|
|
|
return deptAddress;
|
|
|
}
|
|
|
|
|
|
public void setDeptAddress(String deptAddress) {
|
|
|
this.deptAddress = deptAddress;
|
|
|
}
|
|
|
}
|