历史问诊中添加字段创建时间

create_time
master
MKing 2023-11-09 20:39:05 +08:00
parent 5833bfe255
commit ff3f457599
3 changed files with 19 additions and 2 deletions

View File

@ -6,6 +6,7 @@
<groupId>com.four</groupId>
<artifactId>four-common</artifactId>
<version>3.6.3</version>
<relativePath/>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -28,10 +28,23 @@ public class PatientEvaluator {
private String commentContent;
/**
*
*
*/
private Date commentTime;
/**
*
*/
private Date createTime;
public Date getCreateTime() {
return createTime;
}
public void setCreateTime(Date createTime) {
this.createTime = createTime;
}
public Long getPatientEvaluatorId() {
return patientEvaluatorId;
}
@ -75,11 +88,13 @@ public class PatientEvaluator {
public PatientEvaluator() {
}
public PatientEvaluator(Long patientEvaluatorId, Long patientId, Long registrationInformationId, String commentContent, Date commentTime) {
public PatientEvaluator(Long patientEvaluatorId, Long patientId, Long registrationInformationId, String commentContent, Date commentTime, Date createTime) {
this.patientEvaluatorId = patientEvaluatorId;
this.patientId = patientId;
this.registrationInformationId = registrationInformationId;
this.commentContent = commentContent;
this.commentTime = commentTime;
this.createTime = createTime;
}
}

View File

@ -16,6 +16,7 @@ public class UserRequest {
*/
private String msg;
public String getUsername() {
return username;
}