123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230 |
- 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.util.Date;
- /**
- * @author HZY
- * @created 2018/11/9 16:02
- */
- @Entity
- @Table(name = "org_assistance_apply", schema = "", catalog = "healtharchive")
- public class AssistanceApplyModel extends IntegerIdentityEntity {
- private String applyOrg;
- private String applyUserId;
- private Date applyDate;
- private String remark;
- private String picture;
- private Integer isRead;
- private String solutionOrg;
- private Integer solutionStatus;
- private Date solutionDate;
- private String solutionReply;
- private String solutionUserId;
- private String solutionUserName;
- private String profileId;
- private Integer examType;
- private String examDept;
- private String examItemName;
- private String patientName;
- private Integer patientAge;
- private String patientSex;
- @Basic
- @Column(name = "apply_org", nullable = true, length = 32)
- public String getApplyOrg() {
- return applyOrg;
- }
- public void setApplyOrg(String applyOrg) {
- this.applyOrg = applyOrg;
- }
- @Basic
- @Column(name = "apply_user_id", nullable = true, length = 32)
- public String getApplyUserId() {
- return applyUserId;
- }
- public void setApplyUserId(String applyUserId) {
- this.applyUserId = applyUserId;
- }
- @Basic
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
- @Column(name = "apply_date", nullable = true)
- public Date getApplyDate() {
- return applyDate;
- }
- public void setApplyDate(Date applyDate) {
- this.applyDate = applyDate;
- }
- @Basic
- @Column(name = "remark", nullable = true, length = 255)
- public String getRemark() {
- return remark;
- }
- public void setRemark(String remark) {
- this.remark = remark;
- }
- @Basic
- @Column(name = "picture", nullable = true, length = 255)
- public String getPicture() {
- return picture;
- }
- public void setPicture(String picture) {
- this.picture = picture;
- }
- @Basic
- @Column(name = "is_read", nullable = true)
- public Integer getIsRead() {
- return isRead;
- }
- public void setIsRead(Integer isRead) {
- this.isRead = isRead;
- }
- @Basic
- @Column(name = "solution_org", nullable = true, length = 255)
- public String getSolutionOrg() {
- return solutionOrg;
- }
- public void setSolutionOrg(String solutionOrg) {
- this.solutionOrg = solutionOrg;
- }
- @Basic
- @Column(name = "solution_status", nullable = true)
- public Integer getSolutionStatus() {
- return solutionStatus;
- }
- public void setSolutionStatus(Integer solutionStatus) {
- this.solutionStatus = solutionStatus;
- }
- @Basic
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
- @Column(name = "solution_date", nullable = true)
- public Date getSolutionDate() {
- return solutionDate;
- }
- public void setSolutionDate(Date solutionDate) {
- this.solutionDate = solutionDate;
- }
- @Basic
- @Column(name = "solution_reply", nullable = true, length = 255)
- public String getSolutionReply() {
- return solutionReply;
- }
- public void setSolutionReply(String solutionReply) {
- this.solutionReply = solutionReply;
- }
- @Basic
- @Column(name = "solution_user_id", nullable = true, length = 32)
- public String getSolutionUserId() {
- return solutionUserId;
- }
- public void setSolutionUserId(String solutionUserId) {
- this.solutionUserId = solutionUserId;
- }
- @Basic
- @Column(name = "solution_user_name", nullable = true, length = 255)
- public String getSolutionUserName() {
- return solutionUserName;
- }
- public void setSolutionUserName(String solutionUserName) {
- this.solutionUserName = solutionUserName;
- }
- @Basic
- @Column(name = "profile_id", nullable = true, length = 32)
- public String getProfileId() {
- return profileId;
- }
- public void setProfileId(String profileId) {
- this.profileId = profileId;
- }
- @Basic
- @Column(name = "exam_type", nullable = true, length = 2)
- public Integer getExamType() {
- return examType;
- }
- public void setExamType(Integer examType) {
- this.examType = examType;
- }
- @Basic
- @Column(name = "exam_dept", nullable = true, length = 25)
- public String getExamDept() {
- return examDept;
- }
- public void setExamDept(String examDept) {
- this.examDept = examDept;
- }
- @Basic
- @Column(name = "exam_item_name", nullable = true, length = 255)
- public String getExamItemName() {
- return examItemName;
- }
- public void setExamItemName(String examItemName) {
- this.examItemName = examItemName;
- }
- @Basic
- @Column(name = "patient_name", nullable = true, length = 25)
- public String getPatientName() {
- return patientName;
- }
- public void setPatientName(String patientName) {
- this.patientName = patientName;
- }
- @Basic
- @Column(name = "patient_age", nullable = true, length = 4)
- public Integer getPatientAge() {
- return patientAge;
- }
- public void setPatientAge(Integer patientAge) {
- this.patientAge = patientAge;
- }
- @Basic
- @Column(name = "patient_sex", nullable = true, length = 2)
- public String getPatientSex() {
- return patientSex;
- }
- public void setPatientSex(String patientSex) {
- this.patientSex = patientSex;
- }
- }
|