|
@ -1,7 +1,10 @@
|
|
|
package com.yihu.ehr.svrinspection.model;
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.ehr.svrinspection.commons.model.IntegerIdentityEntity;
|
|
|
|
|
|
import javax.persistence.*;
|
|
|
import java.sql.Timestamp;
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
|
* @author HZY
|
|
@ -9,16 +12,16 @@ import java.sql.Timestamp;
|
|
|
*/
|
|
|
@Entity
|
|
|
@Table(name = "org_assistance_apply", schema = "", catalog = "healtharchive")
|
|
|
public class AssistanceApplyModel {
|
|
|
public class AssistanceApplyModel extends IntegerIdentityEntity {
|
|
|
private String applyOrg;
|
|
|
private String applyUserId;
|
|
|
private Timestamp applyDate;
|
|
|
private Date applyDate;
|
|
|
private String remark;
|
|
|
private String picture;
|
|
|
private Integer isRead;
|
|
|
private String solutionOrg;
|
|
|
private Integer solutionStatus;
|
|
|
private Timestamp solutionDate;
|
|
|
private Date solutionDate;
|
|
|
private String solutionReply;
|
|
|
private String solutionUserId;
|
|
|
private String solutionUserName;
|
|
@ -29,7 +32,6 @@ public class AssistanceApplyModel {
|
|
|
private String patientName;
|
|
|
private String patientAge;
|
|
|
private String patientSex;
|
|
|
private int id;
|
|
|
|
|
|
@Basic
|
|
|
@Column(name = "apply_org", nullable = true, length = 32)
|
|
@ -52,12 +54,13 @@ public class AssistanceApplyModel {
|
|
|
}
|
|
|
|
|
|
@Basic
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
@Column(name = "apply_date", nullable = true)
|
|
|
public Timestamp getApplyDate() {
|
|
|
public Date getApplyDate() {
|
|
|
return applyDate;
|
|
|
}
|
|
|
|
|
|
public void setApplyDate(Timestamp applyDate) {
|
|
|
public void setApplyDate(Date applyDate) {
|
|
|
this.applyDate = applyDate;
|
|
|
}
|
|
|
|
|
@ -112,12 +115,13 @@ public class AssistanceApplyModel {
|
|
|
}
|
|
|
|
|
|
@Basic
|
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
|
|
|
@Column(name = "solution_date", nullable = true)
|
|
|
public Timestamp getSolutionDate() {
|
|
|
public Date getSolutionDate() {
|
|
|
return solutionDate;
|
|
|
}
|
|
|
|
|
|
public void setSolutionDate(Timestamp solutionDate) {
|
|
|
public void setSolutionDate(Date solutionDate) {
|
|
|
this.solutionDate = solutionDate;
|
|
|
}
|
|
|
|
|
@ -221,14 +225,6 @@ public class AssistanceApplyModel {
|
|
|
this.patientSex = patientSex;
|
|
|
}
|
|
|
|
|
|
@Id
|
|
|
@Column(name = "id", nullable = false)
|
|
|
public int getId() {
|
|
|
return id;
|
|
|
}
|
|
|
|
|
|
public void setId(int id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
}
|