|
@@ -1,273 +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 BaseReports<M extends BaseReports<M>> extends Model<M> implements IBean {
|
|
|
-
|
|
|
- public M setReportId(java.lang.Long reportId) {
|
|
|
- set("reportId", reportId);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.Long getReportId() {
|
|
|
- return getLong("reportId");
|
|
|
- }
|
|
|
-
|
|
|
- public M setTitle(java.lang.String title) {
|
|
|
- set("title", title);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getTitle() {
|
|
|
- return getStr("title");
|
|
|
- }
|
|
|
-
|
|
|
- public M setSubtitle(java.lang.String subtitle) {
|
|
|
- set("subtitle", subtitle);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getSubtitle() {
|
|
|
- return getStr("subtitle");
|
|
|
- }
|
|
|
-
|
|
|
- public M setReportDoctor(java.lang.String reportDoctor) {
|
|
|
- set("reportDoctor", reportDoctor);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getReportDoctor() {
|
|
|
- return getStr("reportDoctor");
|
|
|
- }
|
|
|
-
|
|
|
- public M setReportDateTime(java.lang.String reportDateTime) {
|
|
|
- set("reportDateTime", reportDateTime);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getReportDateTime() {
|
|
|
- return getStr("reportDateTime");
|
|
|
- }
|
|
|
-
|
|
|
- public M setParameter(java.lang.String parameter) {
|
|
|
- set("parameter", parameter);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getParameter() {
|
|
|
- return getStr("parameter");
|
|
|
- }
|
|
|
-
|
|
|
- public M setImpression(java.lang.String impression) {
|
|
|
- set("impression", impression);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getImpression() {
|
|
|
- return getStr("impression");
|
|
|
- }
|
|
|
-
|
|
|
- public M setDescription(java.lang.String description) {
|
|
|
- set("description", description);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getDescription() {
|
|
|
- return getStr("description");
|
|
|
- }
|
|
|
-
|
|
|
- public M setImg(java.lang.String img) {
|
|
|
- set("img", img);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getImg() {
|
|
|
- return getStr("img");
|
|
|
- }
|
|
|
-
|
|
|
- public M setHospitalNo(java.lang.String hospitalNo) {
|
|
|
- set("hospitalNo", hospitalNo);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getHospitalNo() {
|
|
|
- return getStr("hospitalNo");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPatientid(java.lang.String patientid) {
|
|
|
- set("patientid", patientid);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPatientid() {
|
|
|
- return getStr("patientid");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPatientName(java.lang.String patientName) {
|
|
|
- set("patientName", patientName);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPatientName() {
|
|
|
- return getStr("patientName");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPatientSex(java.lang.String patientSex) {
|
|
|
- set("patientSex", patientSex);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPatientSex() {
|
|
|
- return getStr("patientSex");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPatientAge(java.lang.String patientAge) {
|
|
|
- set("patientAge", patientAge);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPatientAge() {
|
|
|
- return getStr("patientAge");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamClass(java.lang.String examClass) {
|
|
|
- set("examClass", examClass);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamClass() {
|
|
|
- return getStr("examClass");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamItem(java.lang.String examItem) {
|
|
|
- set("examItem", examItem);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamItem() {
|
|
|
- return getStr("examItem");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamNo(java.lang.String examNo) {
|
|
|
- set("examNo", examNo);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamNo() {
|
|
|
- return getStr("examNo");
|
|
|
- }
|
|
|
-
|
|
|
- public M setStudyuid(java.lang.String studyuid) {
|
|
|
- set("studyuid", studyuid);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getStudyuid() {
|
|
|
- return getStr("studyuid");
|
|
|
- }
|
|
|
-
|
|
|
- public M setExamDateTime(java.lang.String examDateTime) {
|
|
|
- set("examDateTime", examDateTime);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getExamDateTime() {
|
|
|
- return getStr("examDateTime");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPhone(java.lang.String phone) {
|
|
|
- set("phone", phone);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getPhone() {
|
|
|
- return getStr("phone");
|
|
|
- }
|
|
|
-
|
|
|
- public M setStatus(java.lang.Integer status) {
|
|
|
- set("status", status);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.Integer getStatus() {
|
|
|
- return getInt("status");
|
|
|
- }
|
|
|
-
|
|
|
- public M setIdCrad(java.lang.String idCrad) {
|
|
|
- set("idCrad", idCrad);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getIdCrad() {
|
|
|
- return getStr("idCrad");
|
|
|
- }
|
|
|
-
|
|
|
- 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 setStudyid(java.lang.String studyid) {
|
|
|
- set("studyid", studyid);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getStudyid() {
|
|
|
- return getStr("studyid");
|
|
|
- }
|
|
|
-
|
|
|
- public M setStudyKey(java.lang.Long studyKey) {
|
|
|
- set("studyKey", studyKey);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.Long getStudyKey() {
|
|
|
- return getLong("studyKey");
|
|
|
- }
|
|
|
-
|
|
|
- public M setDid(java.lang.Integer did) {
|
|
|
- set("did", did);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.Integer getDid() {
|
|
|
- return getInt("did");
|
|
|
- }
|
|
|
-
|
|
|
- public M setQrCode(java.lang.String qrCode) {
|
|
|
- set("qrCode", qrCode);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.String getQrCode() {
|
|
|
- return getStr("qrCode");
|
|
|
- }
|
|
|
-
|
|
|
- public M setPayStatus(java.lang.Integer payStatus) {
|
|
|
- set("pay_status", payStatus);
|
|
|
- return (M)this;
|
|
|
- }
|
|
|
-
|
|
|
- public java.lang.Integer getPayStatus() {
|
|
|
- return getInt("pay_status");
|
|
|
- }
|
|
|
-
|
|
|
-}
|