You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
933 B
Java
38 lines
933 B
Java
2 years ago
|
package com.docus.server.collection.dto;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
/**
|
||
|
* @BelongsProject: docus-webservice-sdry
|
||
|
* @BelongsPackage: com.docus.server.collection.webservice
|
||
|
* @Author: chierhao
|
||
|
* @CreateTime: 2023-02-25 14:44
|
||
|
* @Description: TODO
|
||
|
* @Version: 1.0
|
||
|
*/
|
||
|
@Data
|
||
|
public class TBasicDto {
|
||
|
private String serialId;
|
||
|
private String receive;
|
||
|
private String send;
|
||
|
private String jzh;
|
||
|
private String inpatientNo;
|
||
|
private String admissTimes;
|
||
|
private String name ;
|
||
|
private String admissDate ;
|
||
|
private String disDate ;
|
||
|
private String admissDeptName ;
|
||
|
private String disDeptName ;
|
||
|
private String attendingName;
|
||
|
private String age;
|
||
|
private String sex;
|
||
|
private String idCard;
|
||
|
private String disDept;
|
||
|
private String sexName;
|
||
|
private String bedNum;
|
||
|
private String isDead;
|
||
|
private String admissDays;
|
||
|
private String wardCode;
|
||
|
private String wardName;
|
||
|
}
|