HsmsDepartmentEntity.java 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. package com.dashitech.hsms.entity;
  2. import com.dashitech.utils.I18n;
  3. import javax.persistence.*;
  4. import java.io.Serializable;
  5. /**
  6. * hospital 主表为id,这里为编码
  7. */
  8. @Entity
  9. @Table(name = "itsm_uc_dept")
  10. public class HsmsDepartmentEntity implements Serializable {
  11. private static final long serialVersionUID = 1L;
  12. @Id
  13. @GeneratedValue(strategy = GenerationType.IDENTITY)
  14. @Column(name="id",length = 20)
  15. private Long id;
  16. @I18n("科室名")
  17. @Column(name="dept")
  18. private String dept;
  19. @I18n("科室编码")
  20. @Column(name="code")
  21. private String pcode;
  22. @I18n("HIS科室编码")
  23. @Column(name="his_code")
  24. private String hisCode;
  25. @I18n("删除标识")
  26. @Column(name = "delete_flag")
  27. private Integer deleteFlag;
  28. @I18n("科室别名")
  29. @Column(name = "dept_alias")
  30. private String deptalias;
  31. @I18n("科室类型,检查科室1、检验科室2、临床科室3、其他科室4")
  32. @Column(name = "_type")
  33. private String type;
  34. @I18n("科室位置")
  35. @Column(name = "_address")
  36. private String address;
  37. @I18n("所属院区")
  38. @Column(name = "_hospital_id")
  39. private Long hospital;
  40. @I18n("电话号码")
  41. @Column(name = "_phone")
  42. private String phone;
  43. @I18n("开头字母拼音")
  44. @Column(name = "input_code")
  45. private String inputCode;
  46. @I18n("全拼")
  47. @Column(name = "pinyin")
  48. private String pinyin;
  49. @I18n("别名开头字母拼音")
  50. @Column(name = "alias_input_code")
  51. private String aliasInputCode;
  52. @I18n("别名全拼")
  53. @Column(name = "alias_pinyin")
  54. private String aliasPinyin;
  55. @I18n("二维码,不需同步")
  56. @Column(name = "qrcode")
  57. private String qrcode;
  58. @I18n("父级科室ID")
  59. @Column(name = "parentId")
  60. private Long parent;
  61. @I18n("是否启用")
  62. @Column(name = "flag")
  63. private Integer flag;
  64. public Integer getFlag() {
  65. return flag;
  66. }
  67. public void setFlag(Integer flag) {
  68. this.flag = flag;
  69. }
  70. public String getHisCode() {
  71. return hisCode;
  72. }
  73. public void setHisCode(String hisCode) {
  74. this.hisCode = hisCode;
  75. }
  76. public Long getParent() {
  77. return parent;
  78. }
  79. public void setParent(Long parent) {
  80. this.parent = parent;
  81. }
  82. public String getQrcode() {
  83. return qrcode;
  84. }
  85. public void setQrcode(String qrcode) {
  86. this.qrcode = qrcode;
  87. }
  88. public String getAliasInputCode() {
  89. return aliasInputCode;
  90. }
  91. public void setAliasInputCode(String aliasInputCode) {
  92. this.aliasInputCode = aliasInputCode;
  93. }
  94. public String getAliasPinyin() {
  95. return aliasPinyin;
  96. }
  97. public void setAliasPinyin(String aliasPinyin) {
  98. this.aliasPinyin = aliasPinyin;
  99. }
  100. public String getInputCode() {
  101. return inputCode;
  102. }
  103. public void setInputCode(String inputCode) {
  104. this.inputCode = inputCode;
  105. }
  106. public String getPinyin() {
  107. return pinyin;
  108. }
  109. public void setPinyin(String pinyin) {
  110. this.pinyin = pinyin;
  111. }
  112. public Long getId() {
  113. return id;
  114. }
  115. public void setId(Long id) {
  116. this.id = id;
  117. }
  118. public String getDept() {
  119. return dept;
  120. }
  121. public void setDept(String dept) {
  122. this.dept = dept;
  123. }
  124. public String getPcode() {
  125. return pcode;
  126. }
  127. public void setPcode(String pcode) {
  128. this.pcode = pcode;
  129. }
  130. public Integer getDeleteFlag() {
  131. return deleteFlag;
  132. }
  133. public void setDeleteFlag(Integer deleteFlag) {
  134. this.deleteFlag = deleteFlag;
  135. }
  136. public String getDeptalias() {
  137. return deptalias;
  138. }
  139. public void setDeptalias(String deptalias) {
  140. this.deptalias = deptalias;
  141. }
  142. public String getType() {
  143. return type;
  144. }
  145. public void setType(String type) {
  146. this.type = type;
  147. }
  148. public String getAddress() {
  149. return address;
  150. }
  151. public void setAddress(String address) {
  152. this.address = address;
  153. }
  154. public Long getHospital() {
  155. return hospital;
  156. }
  157. public void setHospital(Long hospital) {
  158. this.hospital = hospital;
  159. }
  160. public String getPhone() {
  161. return phone;
  162. }
  163. public void setPhone(String phone) {
  164. this.phone = phone;
  165. }
  166. @Override
  167. public String toString() {
  168. return "DepartmentEntity{" +
  169. "id=" + id +
  170. ", dept='" + dept + '\'' +
  171. ", pcode='" + pcode + '\'' +
  172. ", deleteFlag=" + deleteFlag +
  173. ", deptalias='" + deptalias + '\'' +
  174. ", type='" + type + '\'' +
  175. ", address='" + address + '\'' +
  176. ", hospital=" + hospital +
  177. ", phone='" + phone + '\'' +
  178. '}';
  179. }
  180. }