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.
		
		
		
		
			
				
					
					
						
							36 lines
						
					
					
						
							706 B
						
					
					
				
			
		
		
	
	
							36 lines
						
					
					
						
							706 B
						
					
					
				package com.ynxbd.common.bean;
 | 
						|
 | 
						|
import lombok.Getter;
 | 
						|
import lombok.NoArgsConstructor;
 | 
						|
import lombok.Setter;
 | 
						|
import lombok.ToString;
 | 
						|
 | 
						|
import java.io.Serializable;
 | 
						|
 | 
						|
/**
 | 
						|
 * @author 李进才
 | 
						|
 * @ClassName PatientLink
 | 
						|
 * @Description TODO
 | 
						|
 * @date 2023/05/09 15:13:00
 | 
						|
 */
 | 
						|
 | 
						|
@Setter
 | 
						|
@Getter
 | 
						|
@ToString
 | 
						|
@NoArgsConstructor
 | 
						|
public class PatientLink implements Serializable {
 | 
						|
    private static final long serialVersionUID = 202305091516L;
 | 
						|
    private String openid;
 | 
						|
    private String patientId;
 | 
						|
    private String name;
 | 
						|
    private String sex;
 | 
						|
    private String age;
 | 
						|
    private String idCardNo;
 | 
						|
    private String birthday;
 | 
						|
    /**
 | 
						|
     * 民族
 | 
						|
     */
 | 
						|
    private String nation;
 | 
						|
    private String address;
 | 
						|
 | 
						|
}
 | 
						|
 |