DzSchool.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. package com.ruoyi.dz.domain;
  2. import com.ruoyi.common.core.domain.entity.SysDept;
  3. import org.apache.commons.lang3.builder.ToStringBuilder;
  4. import org.apache.commons.lang3.builder.ToStringStyle;
  5. import com.ruoyi.common.annotation.Excel;
  6. import com.ruoyi.common.core.domain.BaseEntity;
  7. /**
  8. * 机构校区对象 dz_school
  9. *
  10. * @author ruoyi
  11. * @date 2025-09-12
  12. */
  13. public class DzSchool extends BaseEntity
  14. {
  15. private static final long serialVersionUID = 1L;
  16. /** $column.columnComment */
  17. private Long id;
  18. /** 名称 */
  19. @Excel(name = "名称")
  20. private String name;
  21. /** 机构ID */
  22. @Excel(name = "机构ID")
  23. private Long deptId;
  24. /** 机构ID */
  25. @Excel(name = "适用考生类型")
  26. private String examTypes;
  27. /** 用户ID */
  28. @Excel(name = "用户ID")
  29. private Long userId;
  30. /** 地域 */
  31. @Excel(name = "地域")
  32. private String location;
  33. /** 省 */
  34. @Excel(name = "省")
  35. private Long pro;
  36. /** 市 */
  37. @Excel(name = "市")
  38. private Long city;
  39. /** 区 */
  40. @Excel(name = "区")
  41. private Long area;
  42. String proCityAreaName ;
  43. String areaCode;
  44. /** 状态(0:无效,1:有效) */
  45. @Excel(name = "状态(0:无效,1:有效)")
  46. private Integer status;
  47. /** 班级选择 */
  48. @Excel(name = "班级选择")
  49. private Integer classSelect;
  50. private SysDept dept;
  51. private Boolean campus;
  52. public String getExamTypes() {
  53. return examTypes;
  54. }
  55. public void setExamTypes(String examTypes) {
  56. this.examTypes = examTypes;
  57. }
  58. public Long getUserId() {
  59. return userId;
  60. }
  61. public void setUserId(Long userId) {
  62. this.userId = userId;
  63. }
  64. public String getProCityAreaName() {
  65. return proCityAreaName;
  66. }
  67. public void setProCityAreaName(String proCityAreaName) {
  68. this.proCityAreaName = proCityAreaName;
  69. }
  70. public SysDept getDept() {
  71. return dept;
  72. }
  73. public void setDept(SysDept dept) {
  74. this.dept = dept;
  75. }
  76. public void setId(Long id)
  77. {
  78. this.id = id;
  79. }
  80. public Long getId()
  81. {
  82. return id;
  83. }
  84. public void setName(String name)
  85. {
  86. this.name = name;
  87. }
  88. public String getName()
  89. {
  90. return name;
  91. }
  92. public void setDeptId(Long deptId)
  93. {
  94. this.deptId = deptId;
  95. }
  96. public Long getDeptId()
  97. {
  98. return deptId;
  99. }
  100. public void setLocation(String location)
  101. {
  102. this.location = location;
  103. }
  104. public String getLocation()
  105. {
  106. return location;
  107. }
  108. public void setPro(Long pro)
  109. {
  110. this.pro = pro;
  111. }
  112. public Long getPro()
  113. {
  114. return pro;
  115. }
  116. public void setCity(Long city)
  117. {
  118. this.city = city;
  119. }
  120. public Long getCity()
  121. {
  122. return city;
  123. }
  124. public void setArea(Long area)
  125. {
  126. this.area = area;
  127. }
  128. public Long getArea()
  129. {
  130. return area;
  131. }
  132. public void setStatus(Integer status)
  133. {
  134. this.status = status;
  135. }
  136. public Integer getStatus()
  137. {
  138. return status;
  139. }
  140. public Boolean getCampus() {
  141. return campus;
  142. }
  143. public void setCampus(Boolean campus) {
  144. this.campus = campus;
  145. }
  146. public String getAreaCode() {
  147. return areaCode;
  148. }
  149. public void setAreaCode(String areaCode) {
  150. this.areaCode = areaCode;
  151. }
  152. public Integer getClassSelect() {
  153. return classSelect;
  154. }
  155. public void setClassSelect(Integer classSelect) {
  156. this.classSelect = classSelect;
  157. }
  158. @Override
  159. public String toString() {
  160. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  161. .append("id", getId())
  162. .append("name", getName())
  163. .append("deptId", getDeptId())
  164. .append("location", getLocation())
  165. .append("remark", getRemark())
  166. .append("pro", getPro())
  167. .append("city", getCity())
  168. .append("area", getArea())
  169. .append("status", getStatus())
  170. .append("createTime", getCreateTime())
  171. .append("updateTime", getUpdateTime())
  172. .toString();
  173. }
  174. }