123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- package com.yihu.wlyy.entity.patient;
- import java.util.Date;
- import javax.persistence.Entity;
- import javax.persistence.Table;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.yihu.wlyy.entity.IdEntity;
- /**
- * 健康指导
- * @author George
- *
- */
- @Entity
- @Table(name = "wlyy_patient_health_guidance")
- public class PatientHealthGuidance extends IdEntity {
- /**
- *
- */
- private static final long serialVersionUID = -4187769034437765691L;
- // 患者标识
- private String patient;
- // 医生标识
- private String doctor;
- // 指导内容
- private String content;
- // 咨询图片URL,多图以逗号分隔
- private String images;
- // 咨询语音URL
- private String voice;
- // 作废标识:1正常,0作废
- private String del;
- // 添加时间
- private Date czrq;
- // 签约类型 1三师 2家庭
- private Integer signType;
- // 行政团队
- private Long adminTeamCode;
- public String getPatient() {
- return patient;
- }
- public void setPatient(String patient) {
- this.patient = patient;
- }
- public String getDoctor() {
- return doctor;
- }
- public void setDoctor(String doctor) {
- this.doctor = doctor;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getDel() {
- return del;
- }
- public void setDel(String del) {
- this.del = del;
- }
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
- public Date getCzrq() {
- return czrq;
- }
- public void setCzrq(Date czrq) {
- this.czrq = czrq;
- }
- public String getImages() {
- return images;
- }
- public void setImages(String images) {
- this.images = images;
- }
- public String getVoice() {
- return voice;
- }
- public void setVoice(String voice) {
- this.voice = voice;
- }
- public Integer getSignType() {
- return signType;
- }
- public void setSignType(Integer signType) {
- this.signType = signType;
- }
- public Long getAdminTeamCode() {
- return adminTeamCode;
- }
- public void setAdminTeamCode(Long adminTeamCode) {
- this.adminTeamCode = adminTeamCode;
- }
- }
|