package com.ruoyi.system.domain;
|
|
/**
|
* 医院数据同步DTO
|
* 用于从 SQL Server 查询医院数据
|
*
|
* @author ruoyi
|
*/
|
public class HospDataSyncDTO
|
{
|
/** 医院ID */
|
private Integer hospId;
|
|
/** 医院名称 */
|
private String hospName;
|
|
/** 城市ID */
|
private Integer hospCityId;
|
|
/** 医院简称 */
|
private String hospShort;
|
|
/** 省份 */
|
private String hopsProvince;
|
|
/** 城市 */
|
private String hopsCity;
|
|
/** 区域 */
|
private String hopsArea;
|
|
/** 医院地址 */
|
private String hospAddress;
|
|
/** 医院电话 */
|
private String hospTel;
|
|
/** 单位ID */
|
private Integer hospUnitId;
|
|
/** 状态 */
|
private Integer hospState;
|
|
/** OA ID */
|
private String hospOaId;
|
|
/** 介绍人ID */
|
private Integer hospIntroducerId;
|
|
/** 介绍日期 */
|
private String hospIntroducerDate;
|
|
/** 医院级别 */
|
private Integer hospLevel;
|
|
public Integer getHospId() {
|
return hospId;
|
}
|
|
public void setHospId(Integer hospId) {
|
this.hospId = hospId;
|
}
|
|
public String getHospName() {
|
return hospName;
|
}
|
|
public void setHospName(String hospName) {
|
this.hospName = hospName;
|
}
|
|
public Integer getHospCityId() {
|
return hospCityId;
|
}
|
|
public void setHospCityId(Integer hospCityId) {
|
this.hospCityId = hospCityId;
|
}
|
|
public String getHospShort() {
|
return hospShort;
|
}
|
|
public void setHospShort(String hospShort) {
|
this.hospShort = hospShort;
|
}
|
|
public String getHopsProvince() {
|
return hopsProvince;
|
}
|
|
public void setHopsProvince(String hopsProvince) {
|
this.hopsProvince = hopsProvince;
|
}
|
|
public String getHopsCity() {
|
return hopsCity;
|
}
|
|
public void setHopsCity(String hopsCity) {
|
this.hopsCity = hopsCity;
|
}
|
|
public String getHopsArea() {
|
return hopsArea;
|
}
|
|
public void setHopsArea(String hopsArea) {
|
this.hopsArea = hopsArea;
|
}
|
|
public String getHospAddress() {
|
return hospAddress;
|
}
|
|
public void setHospAddress(String hospAddress) {
|
this.hospAddress = hospAddress;
|
}
|
|
public String getHospTel() {
|
return hospTel;
|
}
|
|
public void setHospTel(String hospTel) {
|
this.hospTel = hospTel;
|
}
|
|
public Integer getHospUnitId() {
|
return hospUnitId;
|
}
|
|
public void setHospUnitId(Integer hospUnitId) {
|
this.hospUnitId = hospUnitId;
|
}
|
|
public Integer getHospState() {
|
return hospState;
|
}
|
|
public void setHospState(Integer hospState) {
|
this.hospState = hospState;
|
}
|
|
public String getHospOaId() {
|
return hospOaId;
|
}
|
|
public void setHospOaId(String hospOaId) {
|
this.hospOaId = hospOaId;
|
}
|
|
public Integer getHospIntroducerId() {
|
return hospIntroducerId;
|
}
|
|
public void setHospIntroducerId(Integer hospIntroducerId) {
|
this.hospIntroducerId = hospIntroducerId;
|
}
|
|
public String getHospIntroducerDate() {
|
return hospIntroducerDate;
|
}
|
|
public void setHospIntroducerDate(String hospIntroducerDate) {
|
this.hospIntroducerDate = hospIntroducerDate;
|
}
|
|
public Integer getHospLevel() {
|
return hospLevel;
|
}
|
|
public void setHospLevel(Integer hospLevel) {
|
this.hospLevel = hospLevel;
|
}
|
|
@Override
|
public String toString() {
|
return "HospDataSyncDTO{" +
|
"hospId=" + hospId +
|
", hospName='" + hospName + '\'' +
|
", hopsCity='" + hopsCity + '\'' +
|
", hopsArea='" + hopsArea + '\'' +
|
'}';
|
}
|
}
|