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.
34 lines
727 B
34 lines
727 B
2 years ago
|
package com.ynxbd.common.bean.in_hosp;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
/**
|
||
|
* @author 李进才
|
||
|
* @ClassName InHospitalList
|
||
|
* @Description TODO
|
||
|
* @date 2023/06/09 17:04:00
|
||
|
*/
|
||
|
|
||
|
@Setter
|
||
|
@Getter
|
||
|
@ToString
|
||
|
@NoArgsConstructor
|
||
|
public class InHospitalList {
|
||
|
private String zyNum;
|
||
|
private String patientName;
|
||
|
private String sex;
|
||
|
private String age;
|
||
|
private String bedNo;
|
||
|
private String diagnose;
|
||
|
private String categoryCode;
|
||
|
private String category;
|
||
|
private String leaveCategoryCode;
|
||
|
private String leaveCategory;
|
||
|
private String inHospitalDate;
|
||
|
private String outHospitalDate;
|
||
|
private String hospitalDays;
|
||
|
}
|