You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					74 lines
				
				1.7 KiB
			
		
		
			
		
	
	
					74 lines
				
				1.7 KiB
			| 
								 
											3 years ago
										 
									 | 
							
								package com.ynxbd.common.bean;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import com.ynxbd.common.bean.pay.Register;
							 | 
						||
| 
								 | 
							
								import lombok.*;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								import java.io.Serializable;
							 | 
						||
| 
								 | 
							
								import java.util.List;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * @Author wsq
							 | 
						||
| 
								 | 
							
								 * @Date 2020/9/4 14:31
							 | 
						||
| 
								 | 
							
								 * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								@Setter
							 | 
						||
| 
								 | 
							
								@Getter
							 | 
						||
| 
								 | 
							
								@ToString
							 | 
						||
| 
								 | 
							
								@NoArgsConstructor
							 | 
						||
| 
								 | 
							
								public class Doctor implements Serializable {
							 | 
						||
| 
								 | 
							
								    private static final long serialVersionUID = 1L;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    private Long id;
							 | 
						||
| 
								 | 
							
								    // 科室代码
							 | 
						||
| 
								 | 
							
								    private String deptCode;
							 | 
						||
| 
								 | 
							
								    // 科室名称
							 | 
						||
| 
								 | 
							
								    private String deptName;
							 | 
						||
| 
								 | 
							
								    // 医师代码
							 | 
						||
| 
								 | 
							
								    private String doctCode;
							 | 
						||
| 
								 | 
							
								    // 医师姓名
							 | 
						||
| 
								 | 
							
								    private String doctName;
							 | 
						||
| 
								 | 
							
								    // 医师职称编码
							 | 
						||
| 
								 | 
							
								    private String titleCode;
							 | 
						||
| 
								 | 
							
								    // 医师职称
							 | 
						||
| 
								 | 
							
								    private String title;
							 | 
						||
| 
								 | 
							
								    // 医师职称
							 | 
						||
| 
								 | 
							
								    private String customTitle;
							 | 
						||
| 
								 | 
							
								    // 简介
							 | 
						||
| 
								 | 
							
								    private String skill;
							 | 
						||
| 
								 | 
							
								    // 电话
							 | 
						||
| 
								 | 
							
								    private String tel;
							 | 
						||
| 
								 | 
							
								    // 简介
							 | 
						||
| 
								 | 
							
								    private String description;
							 | 
						||
| 
								 | 
							
								    // 头像
							 | 
						||
| 
								 | 
							
								    private String headImg;
							 | 
						||
| 
								 | 
							
								    // 地址
							 | 
						||
| 
								 | 
							
								    private String address;
							 | 
						||
| 
								 | 
							
								    // 是否是专家
							 | 
						||
| 
								 | 
							
								    private Integer isExpert;
							 | 
						||
| 
								 | 
							
								    // 备注
							 | 
						||
| 
								 | 
							
								    private String remark;
							 | 
						||
| 
								 | 
							
								    // 拼音码
							 | 
						||
| 
								 | 
							
								    private String pym;
							 | 
						||
| 
								 | 
							
								    // 禁用状态(0:未禁用 1:已禁用)
							 | 
						||
| 
								 | 
							
								    private Boolean isDisabled;
							 | 
						||
| 
								 | 
							
								    // 是否移除{ 0:未移除;1:已移除}
							 | 
						||
| 
								 | 
							
								    private Integer deletedState;
							 | 
						||
| 
								 | 
							
								    // 剩余号源数量
							 | 
						||
| 
								 | 
							
								    private Integer surplusSources;
							 | 
						||
| 
								 | 
							
								    // 号源信息对象
							 | 
						||
| 
								 | 
							
								    private Register register;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    private List<Dept> subDeptList;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    private String metaSkill;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    private String metaDescription;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    // 0 显示微官网,1:显示HIS
							 | 
						||
| 
								 | 
							
								    private Integer skillState;
							 | 
						||
| 
								 | 
							
								    // 0 显示微官网,1:显示HIS
							 | 
						||
| 
								 | 
							
								    private Integer descriptionState;
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								
							 |