BaseDoctors.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. package com.zskk.model.base;
  2. import com.jfinal.plugin.activerecord.Model;
  3. import com.jfinal.plugin.activerecord.IBean;
  4. /**
  5. * Generated by JFinal, do not modify this file.
  6. */
  7. @SuppressWarnings({"serial", "unchecked"})
  8. public abstract class BaseDoctors<M extends BaseDoctors<M>> extends Model<M> implements IBean {
  9. public M setId(java.lang.String id) {
  10. set("id", id);
  11. return (M)this;
  12. }
  13. public java.lang.String getId() {
  14. return getStr("id");
  15. }
  16. public M setUsername(java.lang.String username) {
  17. set("username", username);
  18. return (M)this;
  19. }
  20. public java.lang.String getUsername() {
  21. return getStr("username");
  22. }
  23. public M setPassword(java.lang.String password) {
  24. set("password", password);
  25. return (M)this;
  26. }
  27. public java.lang.String getPassword() {
  28. return getStr("password");
  29. }
  30. public M setRealname(java.lang.String realname) {
  31. set("realname", realname);
  32. return (M)this;
  33. }
  34. public java.lang.String getRealname() {
  35. return getStr("realname");
  36. }
  37. public M setEmail(java.lang.String email) {
  38. set("email", email);
  39. return (M)this;
  40. }
  41. public java.lang.String getEmail() {
  42. return getStr("email");
  43. }
  44. public M setLoginTime(java.util.Date loginTime) {
  45. set("login_time", loginTime);
  46. return (M)this;
  47. }
  48. public java.util.Date getLoginTime() {
  49. return get("login_time");
  50. }
  51. public M setCreatedAt(java.util.Date createdAt) {
  52. set("createdAt", createdAt);
  53. return (M)this;
  54. }
  55. public java.util.Date getCreatedAt() {
  56. return get("createdAt");
  57. }
  58. public M setUpdatedAt(java.util.Date updatedAt) {
  59. set("updatedAt", updatedAt);
  60. return (M)this;
  61. }
  62. public java.util.Date getUpdatedAt() {
  63. return get("updatedAt");
  64. }
  65. public M setToken(java.lang.String token) {
  66. set("token", token);
  67. return (M)this;
  68. }
  69. public java.lang.String getToken() {
  70. return getStr("token");
  71. }
  72. public M setPhone(java.lang.String phone) {
  73. set("phone", phone);
  74. return (M)this;
  75. }
  76. public java.lang.String getPhone() {
  77. return getStr("phone");
  78. }
  79. public M setRemark(java.lang.String remark) {
  80. set("remark", remark);
  81. return (M)this;
  82. }
  83. public java.lang.String getRemark() {
  84. return getStr("remark");
  85. }
  86. public M setDoctorTitle(java.lang.String doctorTitle) {
  87. set("doctor_title", doctorTitle);
  88. return (M)this;
  89. }
  90. public java.lang.String getDoctorTitle() {
  91. return getStr("doctor_title");
  92. }
  93. public M setStatus(java.lang.String status) {
  94. set("status", status);
  95. return (M)this;
  96. }
  97. public java.lang.String getStatus() {
  98. return getStr("status");
  99. }
  100. public M setAttachment(java.lang.String attachment) {
  101. set("attachment", attachment);
  102. return (M)this;
  103. }
  104. public java.lang.String getAttachment() {
  105. return getStr("attachment");
  106. }
  107. public M setInstitutionId(java.lang.String institutionId) {
  108. set("institution_id", institutionId);
  109. return (M)this;
  110. }
  111. public java.lang.String getInstitutionId() {
  112. return getStr("institution_id");
  113. }
  114. public M setDepartmentId(java.lang.String departmentId) {
  115. set("department_id", departmentId);
  116. return (M)this;
  117. }
  118. public java.lang.String getDepartmentId() {
  119. return getStr("department_id");
  120. }
  121. public M setDoctorRole(java.lang.String doctorRole) {
  122. set("doctor_role", doctorRole);
  123. return (M)this;
  124. }
  125. public java.lang.String getDoctorRole() {
  126. return getStr("doctor_role");
  127. }
  128. public M setLoginFailure(java.lang.Integer loginFailure) {
  129. set("login_failure", loginFailure);
  130. return (M)this;
  131. }
  132. public java.lang.Integer getLoginFailure() {
  133. return getInt("login_failure");
  134. }
  135. public M setIsReport(java.lang.String isReport) {
  136. set("is_report", isReport);
  137. return (M)this;
  138. }
  139. public java.lang.String getIsReport() {
  140. return getStr("is_report");
  141. }
  142. }