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.

140 lines
2.0 KiB
Java

5 years ago
package com.ann.demo.entity.interfaceEntity;
import lombok.Data;
import org.hibernate.annotations.GenericGenerator;
import javax.persistence.*;
import java.util.Date;
/**
* @Description
* @Date 2019/7/9 9:49
* @Created by ljx
*/
@Table
@Entity
@Data
public class ArchiveMaster {
/**
*
*/
@Id
@GenericGenerator(name = "system-uuid", strategy = "uuid2")
@GeneratedValue(generator = "system-uuid")
private String id;
/**
* id
*/
private String patientId;
/**
*
*/
private String inpNo;
/**
*
*/
private String visitId;
/**
*
*/
private String name;
/**
*
*/
private String sex;
/**
*
*/
private String deptName;
/**
*
*/
private Date dischargeDateTime;
/**
*
*/
@Column(name = "archivestate")
private String archiveState = "在院";
/**
*
*/
private Date admissionDateTime;
/**
*
*/
private String deptAdmissionTo;
/**
*
*/
private String checkDoctor;
/**
*
*/
private Date checkDatetime;
/**
*
*/
private Date checkedDoctor;
/**
*
*/
private Date checkedDatetime;
/**
*
*/
@Column(name = "lockinfo")
private String LockInfo;
/**
*
*/
private String doctorInCharge;
/**
*
*/
private String idNo;
/**
*
*/
private String dischargeDisposition;
private String deptCodeLend;
/**
* 0 1
* 2019-7-30
*/
private int isValid;
/**
*
* 2019-7-30
*/
private String transferDept;
// 死亡字段
private String deathFlag;
}