parent
5833bfe255
commit
ff3f457599
1
pom.xml
1
pom.xml
|
@ -6,6 +6,7 @@
|
|||
<groupId>com.four</groupId>
|
||||
<artifactId>four-common</artifactId>
|
||||
<version>3.6.3</version>
|
||||
<relativePath/>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ public class UserRequest {
|
|||
*/
|
||||
private String msg;
|
||||
|
||||
|
||||
public String getUsername() {
|
||||
return username;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue