parent
5833bfe255
commit
ff3f457599
1
pom.xml
1
pom.xml
|
@ -6,6 +6,7 @@
|
||||||
<groupId>com.four</groupId>
|
<groupId>com.four</groupId>
|
||||||
<artifactId>four-common</artifactId>
|
<artifactId>four-common</artifactId>
|
||||||
<version>3.6.3</version>
|
<version>3.6.3</version>
|
||||||
|
<relativePath/>
|
||||||
</parent>
|
</parent>
|
||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
|
@ -28,10 +28,23 @@ public class PatientEvaluator {
|
||||||
private String commentContent;
|
private String commentContent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 评论内容
|
* 评论时间
|
||||||
*/
|
*/
|
||||||
private Date commentTime;
|
private Date commentTime;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建时间
|
||||||
|
*/
|
||||||
|
private Date createTime;
|
||||||
|
|
||||||
|
public Date getCreateTime() {
|
||||||
|
return createTime;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCreateTime(Date createTime) {
|
||||||
|
this.createTime = createTime;
|
||||||
|
}
|
||||||
|
|
||||||
public Long getPatientEvaluatorId() {
|
public Long getPatientEvaluatorId() {
|
||||||
return patientEvaluatorId;
|
return patientEvaluatorId;
|
||||||
}
|
}
|
||||||
|
@ -75,11 +88,13 @@ public class PatientEvaluator {
|
||||||
public 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.patientEvaluatorId = patientEvaluatorId;
|
||||||
this.patientId = patientId;
|
this.patientId = patientId;
|
||||||
this.registrationInformationId = registrationInformationId;
|
this.registrationInformationId = registrationInformationId;
|
||||||
this.commentContent = commentContent;
|
this.commentContent = commentContent;
|
||||||
this.commentTime = commentTime;
|
this.commentTime = commentTime;
|
||||||
|
this.createTime = createTime;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,7 @@ public class UserRequest {
|
||||||
*/
|
*/
|
||||||
private String msg;
|
private String msg;
|
||||||
|
|
||||||
|
|
||||||
public String getUsername() {
|
public String getUsername() {
|
||||||
return username;
|
return username;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue