123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- 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");
- }
- }
|