|
@@ -0,0 +1,183 @@
|
|
|
+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 BaseDoctors<M extends BaseDoctors<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 setUsername(java.lang.String username) {
|
|
|
+ set("username", username);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getUsername() {
|
|
|
+ return getStr("username");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setPassword(java.lang.String password) {
|
|
|
+ set("password", password);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getPassword() {
|
|
|
+ return getStr("password");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setRealname(java.lang.String realname) {
|
|
|
+ set("realname", realname);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getRealname() {
|
|
|
+ return getStr("realname");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setEmail(java.lang.String email) {
|
|
|
+ set("email", email);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getEmail() {
|
|
|
+ return getStr("email");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setLoginTime(java.util.Date loginTime) {
|
|
|
+ set("login_time", loginTime);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.util.Date getLoginTime() {
|
|
|
+ return get("login_time");
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 setToken(java.lang.String token) {
|
|
|
+ set("token", token);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getToken() {
|
|
|
+ return getStr("token");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setPhone(java.lang.String phone) {
|
|
|
+ set("phone", phone);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getPhone() {
|
|
|
+ return getStr("phone");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setRemark(java.lang.String remark) {
|
|
|
+ set("remark", remark);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getRemark() {
|
|
|
+ return getStr("remark");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setDoctorTitle(java.lang.String doctorTitle) {
|
|
|
+ set("doctor_title", doctorTitle);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getDoctorTitle() {
|
|
|
+ return getStr("doctor_title");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setStatus(java.lang.String status) {
|
|
|
+ set("status", status);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getStatus() {
|
|
|
+ return getStr("status");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setAttachment(java.lang.String attachment) {
|
|
|
+ set("attachment", attachment);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getAttachment() {
|
|
|
+ return getStr("attachment");
|
|
|
+ }
|
|
|
+
|
|
|
+ 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 setDepartmentId(java.lang.String departmentId) {
|
|
|
+ set("department_id", departmentId);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getDepartmentId() {
|
|
|
+ return getStr("department_id");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setDoctorRole(java.lang.String doctorRole) {
|
|
|
+ set("doctor_role", doctorRole);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getDoctorRole() {
|
|
|
+ return getStr("doctor_role");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setLoginFailure(java.lang.Integer loginFailure) {
|
|
|
+ set("login_failure", loginFailure);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.Integer getLoginFailure() {
|
|
|
+ return getInt("login_failure");
|
|
|
+ }
|
|
|
+
|
|
|
+ public M setIsReport(java.lang.String isReport) {
|
|
|
+ set("is_report", isReport);
|
|
|
+ return (M)this;
|
|
|
+ }
|
|
|
+
|
|
|
+ public java.lang.String getIsReport() {
|
|
|
+ return getStr("is_report");
|
|
|
+ }
|
|
|
+
|
|
|
+}
|