|  | @ -0,0 +1,100 @@
 | 
	
		
			
				|  |  | package com.yihu.jw.entity.hospital.doctor;
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  | import com.fasterxml.jackson.annotation.JsonFormat;
 | 
	
		
			
				|  |  | import com.yihu.jw.entity.UuidIdentityEntity;
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  | import javax.persistence.Entity;
 | 
	
		
			
				|  |  | import javax.persistence.Table;
 | 
	
		
			
				|  |  | import java.util.Date;
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  | /**
 | 
	
		
			
				|  |  |  * Created by Trick on 2019/6/14.
 | 
	
		
			
				|  |  |  */
 | 
	
		
			
				|  |  | @Entity
 | 
	
		
			
				|  |  | @Table(name = "wlyy_patient_register_time")
 | 
	
		
			
				|  |  | public class WlyyPatientRegisterTimeDO extends UuidIdentityEntity {
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     private String patient;//患者code',
 | 
	
		
			
				|  |  |     private String patientName;//患者姓名',
 | 
	
		
			
				|  |  |     private String doctor;//医生code',
 | 
	
		
			
				|  |  |     private String doctorName;//医生姓名',
 | 
	
		
			
				|  |  |     private String workId;//医生排班id',
 | 
	
		
			
				|  |  |     private Date startTime;//预约开始时间',
 | 
	
		
			
				|  |  |     private Date endTime;//
 | 
	
		
			
				|  |  |     private String date;//预约日期',
 | 
	
		
			
				|  |  |     private Date create_time;//创建时间',
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public String getPatient() {
 | 
	
		
			
				|  |  |         return patient;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public void setPatient(String patient) {
 | 
	
		
			
				|  |  |         this.patient = patient;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public String getPatientName() {
 | 
	
		
			
				|  |  |         return patientName;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public void setPatientName(String patientName) {
 | 
	
		
			
				|  |  |         this.patientName = patientName;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public String getDoctor() {
 | 
	
		
			
				|  |  |         return doctor;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public void setDoctor(String doctor) {
 | 
	
		
			
				|  |  |         this.doctor = doctor;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public String getDoctorName() {
 | 
	
		
			
				|  |  |         return doctorName;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public void setDoctorName(String doctorName) {
 | 
	
		
			
				|  |  |         this.doctorName = doctorName;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public String getWorkId() {
 | 
	
		
			
				|  |  |         return workId;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public void setWorkId(String workId) {
 | 
	
		
			
				|  |  |         this.workId = workId;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  |     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
 | 
	
		
			
				|  |  |     public Date getStartTime() {
 | 
	
		
			
				|  |  |         return startTime;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public void setStartTime(Date startTime) {
 | 
	
		
			
				|  |  |         this.startTime = startTime;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
 | 
	
		
			
				|  |  |     public Date getEndTime() {
 | 
	
		
			
				|  |  |         return endTime;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public void setEndTime(Date endTime) {
 | 
	
		
			
				|  |  |         this.endTime = endTime;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public String getDate() {
 | 
	
		
			
				|  |  |         return date;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public void setDate(String date) {
 | 
	
		
			
				|  |  |         this.date = date;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00")
 | 
	
		
			
				|  |  |     public Date getCreate_time() {
 | 
	
		
			
				|  |  |         return create_time;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | 
 | 
	
		
			
				|  |  |     public void setCreate_time(Date create_time) {
 | 
	
		
			
				|  |  |         this.create_time = create_time;
 | 
	
		
			
				|  |  |     }
 | 
	
		
			
				|  |  | }
 |