package com.kidgrow.oprationcenter.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;
|
|
/**
|
* 石家庄喜高科技有限责任公司 版权所有 © Copyright 2020<br>
|
*
|
* @version 1.0
|
* @Description: 筛查机构信息表<br>
|
* @Project: 用户中心<br>
|
* @CreateDate: Created in 2020-10-12 17:10:31 <br>
|
* @Author: <a href="78125310@kidgrow.com">dougang</a>
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
@NoArgsConstructor
|
@AllArgsConstructor
|
@TableName("screening_organization_info")
|
public class ScreeningOrganizationInfo extends SuperModel {
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* 省
|
*/
|
private String province;
|
/**
|
* 市
|
*/
|
private String city;
|
/**
|
* 区
|
*/
|
private String area;
|
/**
|
* 机构名称
|
*/
|
private String organizationName;
|
/**
|
* 联系人
|
*/
|
private String contactName;
|
/**
|
* 联系电话
|
*/
|
private String contactNumber;
|
/**
|
* 医院ID
|
*/
|
@JsonSerialize(using = ToStringSerializer.class)
|
private Long sourceHospitalId;
|
/**
|
* 医院名称
|
*/
|
private String sourceHospitalName;
|
/**
|
* 备注
|
*/
|
private String remarks;
|
/**
|
* 机构简称
|
*/
|
private String abbreviation;
|
/**
|
* 机构二维码地址
|
*/
|
private String qrCode;
|
/**
|
* 社区
|
*/
|
private String community;
|
/**
|
* 机构编码
|
*/
|
private String organizationNo;
|
/**
|
* 区域code
|
*/
|
private String areaCode;
|
|
/**
|
* 上一级
|
*/
|
@JsonSerialize(using = ToStringSerializer.class)
|
private Long parentId;
|
|
/**
|
* 等级
|
*/
|
private int orgLevel;
|
}
|