package com.kidgrow.usercenter.model;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
import com.kidgrow.common.model.SuperModel;
|
import lombok.AllArgsConstructor;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.NoArgsConstructor;
|
import org.hibernate.validator.constraints.NotEmpty;
|
|
/**
|
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
|
*
|
* @version 1.0
|
* @Description: 医院基础信息表<br>
|
* @Project: 用户中心<br>
|
* @CreateDate: Created in 2020-04-02 18:32:36 <br>
|
* @Author: <a href="4345453@kidgrow.com">liuke</a>
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@NoArgsConstructor
|
@AllArgsConstructor
|
@TableName("sys_hospital")
|
public class SysHospital extends SuperModel {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 医院名称 同组织名字
|
*/
|
@NotEmpty(message = "医院名称 同组织名字不能为空")
|
private String hospitalName;
|
/**
|
* 组织ID-
|
*/
|
@JsonSerialize(using = ToStringSerializer.class)
|
private Long orgId;
|
/**
|
* 医院简称
|
*/
|
private String hospitalShortName;
|
/**
|
* 医院编码
|
*/
|
private String hospitalCode;
|
/**
|
* 医院类型ID 从字典表关联 社区/儿保等等之类
|
*/
|
private String hospitalTypeId;
|
/**
|
* 医院类型 社区/儿保等等之类
|
*/
|
private String hospitalTypeName;
|
/**
|
* 医院电话
|
*/
|
private String hospitalTel;
|
/**
|
* 医院联系人
|
*/
|
private String hospitalLink;
|
/**
|
* 医院所在省
|
*/
|
private String hospitalProvince;
|
/**
|
* 医院所在城
|
*/
|
private String hospitalCity;
|
/**
|
* 医院所在地区
|
*/
|
private String hospitalArea;
|
/**
|
* 区号
|
*/
|
private String areaCode;
|
/**
|
* 医院地址
|
*/
|
private String hospitalAdress;
|
/**
|
* 所在位置纬度
|
*/
|
private String latitude;
|
/**
|
* 所在位置经度
|
*/
|
private String longitude;
|
/**
|
* 资质ID
|
*/
|
private String hospitalQualifiedId;
|
/**
|
* 资质(三甲医院)
|
*/
|
private String hospitalQualifiedName;
|
/**
|
* 医院logo 缩略图
|
*/
|
private String hospitalLitLogo;
|
/**
|
* 医院logo 原图
|
*/
|
private String hospitalLogo;
|
/**
|
* 医院简介图片
|
*/
|
private String hospitalAdimage;
|
/**
|
* 医院简介
|
*/
|
private String hospitalAbout;
|
/**
|
* 是否筛查医院 1是0否
|
*/
|
private Boolean isScreen;
|
/**
|
* 服务状态 0试用 1正式
|
*/
|
private Integer hospitalState;
|
/**
|
* 状态,1启用,0停用
|
*/
|
private Boolean enabled;
|
/**
|
* 租户字段
|
*/
|
private String tenantId;
|
/**
|
* 是否删除,1删除,0未删除
|
*/
|
private Boolean isDel;
|
/**
|
* 创建者的部门
|
*/
|
private String createUserOrgCode;
|
}
|