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.
		
		
		
		
			
				
					
					
						
							54 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							54 lines
						
					
					
						
							1.1 KiB
						
					
					
				package com.ynxbd.common.bean;
 | 
						|
 | 
						|
import lombok.Getter;
 | 
						|
import lombok.NoArgsConstructor;
 | 
						|
import lombok.Setter;
 | 
						|
import lombok.ToString;
 | 
						|
 | 
						|
import java.util.Date;
 | 
						|
 | 
						|
/**
 | 
						|
 * 自助核酸检测记录
 | 
						|
 *
 | 
						|
 * @Author wsq
 | 
						|
 * @Date 2021/6/25 10:23
 | 
						|
 * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
 | 
						|
 */
 | 
						|
@Setter
 | 
						|
@Getter
 | 
						|
@ToString
 | 
						|
@NoArgsConstructor
 | 
						|
public class NatRecord {
 | 
						|
    private Long id;
 | 
						|
 | 
						|
    private String patientId;
 | 
						|
    // 姓名
 | 
						|
    private String name;
 | 
						|
    //  性别
 | 
						|
    private String sex;
 | 
						|
    // 身份证号码
 | 
						|
    private String idCardNo;
 | 
						|
    // 电话
 | 
						|
    private String tel;
 | 
						|
    // 地址
 | 
						|
    private String address;
 | 
						|
    //---------------------------------
 | 
						|
    // 国籍
 | 
						|
    private String country;
 | 
						|
    // 体温
 | 
						|
    private String temperature;
 | 
						|
    // 绿码状况
 | 
						|
    private String greenCode;
 | 
						|
    // 行程码状况
 | 
						|
    private String tripCode;
 | 
						|
    // 具体症状
 | 
						|
    private String symptom;
 | 
						|
    // 分诊去向
 | 
						|
    private String deptName;
 | 
						|
    // 调查人
 | 
						|
    private String operateUser;
 | 
						|
    // 调查时间
 | 
						|
    private Date updateTime;
 | 
						|
 | 
						|
    private String info;
 | 
						|
}
 | 
						|
 |