| 
					
				 | 
			
			
				@ -3,6 +3,7 @@ package com.yihu.jw.entity.hospital.doctor; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import com.fasterxml.jackson.annotation.JsonFormat; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import com.yihu.jw.entity.UuidIdentityEntity; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import javax.persistence.Column; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import javax.persistence.Entity; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import javax.persistence.Table; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				import java.util.Date; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@ -27,7 +28,7 @@ public class WlyyDoctorWorkTimeDO extends UuidIdentityEntity { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String timeType;//1.上午00:00~12:00之前;2.下午12:00~00:00;', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Date startTime;//开始时间', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Date endTime;//结束时间', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String workDate;//排班日期', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private String date;//排班日期', 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Integer timeInterval;//号源间隔 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Integer sourceNumber;//号源数目 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    private Date createTime;//创建时间', 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@ -139,14 +140,6 @@ public class WlyyDoctorWorkTimeDO extends UuidIdentityEntity { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.endTime = endTime; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getWorkDate() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return workDate; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setWorkDate(String workDate) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.workDate = workDate; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+08:00") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public Date getCreateTime() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return createTime; 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@ -171,4 +164,13 @@ public class WlyyDoctorWorkTimeDO extends UuidIdentityEntity { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setSourceNumber(Integer sourceNumber) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.sourceNumber = sourceNumber; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    @Column(name = "work_date") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public String getDate() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        return date; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    public void setDate(String date) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				        this.date = date; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				} 
			 |