123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240 |
- package com.dashitech.hsms.entity;
- import com.dashitech.utils.I18n;
- import javax.persistence.*;
- import java.io.Serializable;
- /**
- * hospital 主表为id,这里为编码
- */
- @Entity
- @Table(name = "itsm_uc_dept")
- public class HsmsDepartmentEntity implements Serializable {
- private static final long serialVersionUID = 1L;
- @Id
- @GeneratedValue(strategy = GenerationType.IDENTITY)
- @Column(name="id",length = 20)
- private Long id;
- @I18n("科室名")
- @Column(name="dept")
- private String dept;
- @I18n("科室编码")
- @Column(name="code")
- private String pcode;
- @I18n("HIS科室编码")
- @Column(name="his_code")
- private String hisCode;
- @I18n("删除标识")
- @Column(name = "delete_flag")
- private Integer deleteFlag;
- @I18n("科室别名")
- @Column(name = "dept_alias")
- private String deptalias;
- @I18n("科室类型,检查科室1、检验科室2、临床科室3、其他科室4")
- @Column(name = "_type")
- private String type;
- @I18n("科室位置")
- @Column(name = "_address")
- private String address;
- @I18n("所属院区")
- @Column(name = "_hospital_id")
- private Long hospital;
- @I18n("电话号码")
- @Column(name = "_phone")
- private String phone;
- @I18n("开头字母拼音")
- @Column(name = "input_code")
- private String inputCode;
- @I18n("全拼")
- @Column(name = "pinyin")
- private String pinyin;
- @I18n("别名开头字母拼音")
- @Column(name = "alias_input_code")
- private String aliasInputCode;
- @I18n("别名全拼")
- @Column(name = "alias_pinyin")
- private String aliasPinyin;
- @I18n("二维码,不需同步")
- @Column(name = "qrcode")
- private String qrcode;
- @I18n("父级科室ID")
- @Column(name = "parentId")
- private Long parent;
- @I18n("是否启用")
- @Column(name = "flag")
- private Integer flag;
- public Integer getFlag() {
- return flag;
- }
- public void setFlag(Integer flag) {
- this.flag = flag;
- }
- public String getHisCode() {
- return hisCode;
- }
- public void setHisCode(String hisCode) {
- this.hisCode = hisCode;
- }
- public Long getParent() {
- return parent;
- }
- public void setParent(Long parent) {
- this.parent = parent;
- }
- public String getQrcode() {
- return qrcode;
- }
- public void setQrcode(String qrcode) {
- this.qrcode = qrcode;
- }
- public String getAliasInputCode() {
- return aliasInputCode;
- }
- public void setAliasInputCode(String aliasInputCode) {
- this.aliasInputCode = aliasInputCode;
- }
- public String getAliasPinyin() {
- return aliasPinyin;
- }
- public void setAliasPinyin(String aliasPinyin) {
- this.aliasPinyin = aliasPinyin;
- }
- public String getInputCode() {
- return inputCode;
- }
- public void setInputCode(String inputCode) {
- this.inputCode = inputCode;
- }
- public String getPinyin() {
- return pinyin;
- }
- public void setPinyin(String pinyin) {
- this.pinyin = pinyin;
- }
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public String getDept() {
- return dept;
- }
- public void setDept(String dept) {
- this.dept = dept;
- }
- public String getPcode() {
- return pcode;
- }
- public void setPcode(String pcode) {
- this.pcode = pcode;
- }
- public Integer getDeleteFlag() {
- return deleteFlag;
- }
- public void setDeleteFlag(Integer deleteFlag) {
- this.deleteFlag = deleteFlag;
- }
- public String getDeptalias() {
- return deptalias;
- }
- public void setDeptalias(String deptalias) {
- this.deptalias = deptalias;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getAddress() {
- return address;
- }
- public void setAddress(String address) {
- this.address = address;
- }
- public Long getHospital() {
- return hospital;
- }
- public void setHospital(Long hospital) {
- this.hospital = hospital;
- }
- public String getPhone() {
- return phone;
- }
- public void setPhone(String phone) {
- this.phone = phone;
- }
- @Override
- public String toString() {
- return "DepartmentEntity{" +
- "id=" + id +
- ", dept='" + dept + '\'' +
- ", pcode='" + pcode + '\'' +
- ", deleteFlag=" + deleteFlag +
- ", deptalias='" + deptalias + '\'' +
- ", type='" + type + '\'' +
- ", address='" + address + '\'' +
- ", hospital=" + hospital +
- ", phone='" + phone + '\'' +
- '}';
- }
- }
|