|
@@ -1,462 +0,0 @@
|
|
|
-package com.zskk.model.base;
|
|
|
-
|
|
|
-import com.jfinal.plugin.activerecord.Model;
|
|
|
-import com.jfinal.plugin.activerecord.IBean;
|
|
|
-
|
|
|
-/**
|
|
|
- * Generated by JFinal, do not modify this file.
|
|
|
- */
|
|
|
-@SuppressWarnings({"serial", "unchecked"})
|
|
|
-public abstract class BaseExams<M extends BaseExams<M>> extends Model<M> implements IBean {
|
|
|
-
|
|
|
- public M setId(java.lang.String id) {
|
|
|
- set("id", id);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getId() {
|
|
|
- return getStr("id");
|
|
|
- }
|
|
|
-
|
|
|
- public M setDeptId(java.lang.String deptId) {
|
|
|
- set("dept_id", deptId);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getDeptId() {
|
|
|
- return getStr("dept_id");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPatientId(java.lang.String patientId) {
|
|
|
- set("patient_id", patientId);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPatientId() {
|
|
|
- return getStr("patient_id");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPatientNum(java.lang.String patientNum) {
|
|
|
- set("patient_num", patientNum);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPatientNum() {
|
|
|
- return getStr("patient_num");
|
|
|
- }
|
|
|
-
|
|
|
- public M setAccessionNum(java.lang.String accessionNum) {
|
|
|
- set("accession_num", accessionNum);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getAccessionNum() {
|
|
|
- return getStr("accession_num");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamDatetime(java.lang.String examDatetime) {
|
|
|
- set("exam_datetime", examDatetime);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamDatetime() {
|
|
|
- return getStr("exam_datetime");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamClass(java.lang.String examClass) {
|
|
|
- set("exam_class", examClass);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamClass() {
|
|
|
- return getStr("exam_class");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamSubClass(java.lang.String examSubClass) {
|
|
|
- set("exam_sub_class", examSubClass);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamSubClass() {
|
|
|
- return getStr("exam_sub_class");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamProject(java.lang.String examProject) {
|
|
|
- set("exam_project", examProject);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamProject() {
|
|
|
- return getStr("exam_project");
|
|
|
- }
|
|
|
-
|
|
|
- public M setDevice(java.lang.String device) {
|
|
|
- set("device", device);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getDevice() {
|
|
|
- return getStr("device");
|
|
|
- }
|
|
|
-
|
|
|
- public M setBodyPart(java.lang.String bodyPart) {
|
|
|
- set("body_part", bodyPart);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getBodyPart() {
|
|
|
- return getStr("body_part");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamMethod(java.lang.String examMethod) {
|
|
|
- set("exam_method", examMethod);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamMethod() {
|
|
|
- return getStr("exam_method");
|
|
|
- }
|
|
|
-
|
|
|
- public M setHopitalizedNo(java.lang.String hopitalizedNo) {
|
|
|
- set("hopitalized_no", hopitalizedNo);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getHopitalizedNo() {
|
|
|
- return getStr("hopitalized_no");
|
|
|
- }
|
|
|
-
|
|
|
- public M setBedNo(java.lang.String bedNo) {
|
|
|
- set("bed_no", bedNo);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getBedNo() {
|
|
|
- return getStr("bed_no");
|
|
|
- }
|
|
|
-
|
|
|
- public M setClinDeptId(java.lang.String clinDeptId) {
|
|
|
- set("clin_dept_id", clinDeptId);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getClinDeptId() {
|
|
|
- return getStr("clin_dept_id");
|
|
|
- }
|
|
|
-
|
|
|
- public M setTechnician(java.lang.String technician) {
|
|
|
- set("technician", technician);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getTechnician() {
|
|
|
- return getStr("technician");
|
|
|
- }
|
|
|
-
|
|
|
- public M setCharge(java.lang.String charge) {
|
|
|
- set("charge", charge);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getCharge() {
|
|
|
- return getStr("charge");
|
|
|
- }
|
|
|
-
|
|
|
- public M setCost(java.lang.String cost) {
|
|
|
- set("cost", cost);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getCost() {
|
|
|
- return getStr("cost");
|
|
|
- }
|
|
|
-
|
|
|
- public M setClinDoctors(java.lang.String clinDoctors) {
|
|
|
- set("clin_doctors", clinDoctors);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getClinDoctors() {
|
|
|
- return getStr("clin_doctors");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPhone(java.lang.String phone) {
|
|
|
- set("phone", phone);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPhone() {
|
|
|
- return getStr("phone");
|
|
|
- }
|
|
|
-
|
|
|
- public M setInstitutionId(java.lang.String institutionId) {
|
|
|
- set("institution_id", institutionId);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getInstitutionId() {
|
|
|
- return getStr("institution_id");
|
|
|
- }
|
|
|
-
|
|
|
- public M setStudyId(java.lang.String studyId) {
|
|
|
- set("study_id", studyId);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getStudyId() {
|
|
|
- return getStr("study_id");
|
|
|
- }
|
|
|
-
|
|
|
- public M setIllnessDesc(java.lang.String illnessDesc) {
|
|
|
- set("illness_desc", illnessDesc);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getIllnessDesc() {
|
|
|
- return getStr("illness_desc");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPhysSign(java.lang.String physSign) {
|
|
|
- set("phys_sign", physSign);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPhysSign() {
|
|
|
- return getStr("phys_sign");
|
|
|
- }
|
|
|
-
|
|
|
- public M setClinDiag(java.lang.String clinDiag) {
|
|
|
- set("clin_diag", clinDiag);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getClinDiag() {
|
|
|
- return getStr("clin_diag");
|
|
|
- }
|
|
|
-
|
|
|
- public M setClinSymp(java.lang.String clinSymp) {
|
|
|
- set("clin_symp", clinSymp);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getClinSymp() {
|
|
|
- return getStr("clin_symp");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPatientSource(java.lang.String patientSource) {
|
|
|
- set("patient_source", patientSource);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPatientSource() {
|
|
|
- return getStr("patient_source");
|
|
|
- }
|
|
|
-
|
|
|
- public M setReqDatetime(java.util.Date reqDatetime) {
|
|
|
- set("req_datetime", reqDatetime);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getReqDatetime() {
|
|
|
- return get("req_datetime");
|
|
|
- }
|
|
|
-
|
|
|
- public M setReqDoctor(java.lang.String reqDoctor) {
|
|
|
- set("req_doctor", reqDoctor);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getReqDoctor() {
|
|
|
- return getStr("req_doctor");
|
|
|
- }
|
|
|
-
|
|
|
- public M setRemark(java.lang.String remark) {
|
|
|
- set("remark", remark);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getRemark() {
|
|
|
- return getStr("remark");
|
|
|
- }
|
|
|
-
|
|
|
- public M setRegister(java.lang.String register) {
|
|
|
- set("register", register);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getRegister() {
|
|
|
- return getStr("register");
|
|
|
- }
|
|
|
-
|
|
|
- public M setRegisterDatetime(java.util.Date registerDatetime) {
|
|
|
- set("register_datetime", registerDatetime);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getRegisterDatetime() {
|
|
|
- return get("register_datetime");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamStatus(java.lang.Integer examStatus) {
|
|
|
- set("exam_status", examStatus);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.Integer getExamStatus() {
|
|
|
- return getInt("exam_status");
|
|
|
- }
|
|
|
-
|
|
|
- public M setStatus(java.lang.String status) {
|
|
|
- set("status", status);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getStatus() {
|
|
|
- return getStr("status");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPayStatus(java.lang.String payStatus) {
|
|
|
- set("pay_status", payStatus);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPayStatus() {
|
|
|
- return getStr("pay_status");
|
|
|
- }
|
|
|
-
|
|
|
- public M setIsRemote(java.lang.String isRemote) {
|
|
|
- set("is_remote", isRemote);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getIsRemote() {
|
|
|
- return getStr("is_remote");
|
|
|
- }
|
|
|
-
|
|
|
- public M setUrgent(java.lang.String urgent) {
|
|
|
- set("urgent", urgent);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getUrgent() {
|
|
|
- return getStr("urgent");
|
|
|
- }
|
|
|
-
|
|
|
- public M setFilmType(java.lang.String filmType) {
|
|
|
- set("film_type", filmType);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getFilmType() {
|
|
|
- return getStr("film_type");
|
|
|
- }
|
|
|
-
|
|
|
- public M setAnamnesis(java.lang.String anamnesis) {
|
|
|
- set("anamnesis", anamnesis);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getAnamnesis() {
|
|
|
- return getStr("anamnesis");
|
|
|
- }
|
|
|
-
|
|
|
- public M setFamilyIll(java.lang.String familyIll) {
|
|
|
- set("family_ill", familyIll);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getFamilyIll() {
|
|
|
- return getStr("family_ill");
|
|
|
- }
|
|
|
-
|
|
|
- public M setCreatedAt(java.util.Date createdAt) {
|
|
|
- set("createdAt", createdAt);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getCreatedAt() {
|
|
|
- return get("createdAt");
|
|
|
- }
|
|
|
-
|
|
|
- public M setUpdatedAt(java.util.Date updatedAt) {
|
|
|
- set("updatedAt", updatedAt);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.util.Date getUpdatedAt() {
|
|
|
- return get("updatedAt");
|
|
|
- }
|
|
|
-
|
|
|
- public M setDeliveryDoctor(java.lang.String deliveryDoctor) {
|
|
|
- set("delivery_doctor", deliveryDoctor);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getDeliveryDoctor() {
|
|
|
- return getStr("delivery_doctor");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamReport(java.lang.String examReport) {
|
|
|
- set("exam_report", examReport);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamReport() {
|
|
|
- return getStr("exam_report");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExt(java.lang.String ext) {
|
|
|
- set("ext", ext);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExt() {
|
|
|
- return getStr("ext");
|
|
|
- }
|
|
|
-
|
|
|
- public M setIdCard(java.lang.String idCard) {
|
|
|
- set("id_card", idCard);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getIdCard() {
|
|
|
- return getStr("id_card");
|
|
|
- }
|
|
|
-
|
|
|
- public M setStudyUid(java.lang.String studyUid) {
|
|
|
- set("study_uid", studyUid);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getStudyUid() {
|
|
|
- return getStr("study_uid");
|
|
|
- }
|
|
|
-
|
|
|
- public M setApplicationDepartment(java.lang.String applicationDepartment) {
|
|
|
- set("application_department", applicationDepartment);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getApplicationDepartment() {
|
|
|
- return getStr("application_department");
|
|
|
- }
|
|
|
-
|
|
|
- public M setApplicationDoctor(java.lang.String applicationDoctor) {
|
|
|
- set("application_doctor", applicationDoctor);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getApplicationDoctor() {
|
|
|
- return getStr("application_doctor");
|
|
|
- }
|
|
|
-
|
|
|
- public M setSevere(java.lang.String severe) {
|
|
|
- set("severe", severe);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getSevere() {
|
|
|
- return getStr("severe");
|
|
|
- }
|
|
|
-
|
|
|
-}
|