fix(emr): 添加EmrRevisionWithPatientDto类修复编译错误
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.healthlink.his.emr.dto;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class EmrRevisionWithPatientDto {
|
||||
private Long id;
|
||||
private Long emrId;
|
||||
private Long encounterId;
|
||||
private Integer revisionNumber;
|
||||
private Long operatorId;
|
||||
private String operatorName;
|
||||
private String operationType;
|
||||
private String diffContent;
|
||||
private String snapshotContent;
|
||||
private Date createTime;
|
||||
private String patientName;
|
||||
private String patientGender;
|
||||
private String patientAge;
|
||||
}
|
||||
Reference in New Issue
Block a user