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.

170 lines
2.4 KiB
Java

5 years ago
package com.ann.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 String checkedDoctor;
5 years ago
/**
*
*/
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;
/*
* 2019-12-27
*
* */
@Column(name = "emr_nure_cmt")
private String emrNurseCmt;
private String emrDoctorCmt;
/**
* 2020-01-02
*
* */
private String sendTime;
/**
* 2020-03-03
*
* */
private String firstInstance;
/**
*
* */
private Date emrDoctorCommitTime;
/**
*
* */
private Date emrNurseCommitTime;
5 years ago
}