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.
46 lines
758 B
Java
46 lines
758 B
Java
package com.example.duplicate.controller.vo;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @ClassName AddArchiveMasterVo
|
|
* @Description 连州人民医院Archive_Master表实体
|
|
* @Author linjj
|
|
* @Date 2023/11/13 14:48
|
|
* @Version 1.0
|
|
*/
|
|
@Data
|
|
public class AddArchiveMasterVo {
|
|
|
|
|
|
|
|
private String ID;
|
|
|
|
private String patientId;
|
|
|
|
private String inpNo;
|
|
|
|
private String visitId;
|
|
|
|
private String name;
|
|
|
|
private String deptName;
|
|
|
|
private String dischargeDateTime;
|
|
|
|
private String ArchiveState;
|
|
|
|
private String admissionDateTime;
|
|
|
|
private String LockInfo;
|
|
|
|
private String DISCHARGEDISPOSITION;
|
|
|
|
|
|
private String splitName;
|
|
|
|
|
|
}
|