You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							501 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							501 B
						
					
					
				
								package com.example.demo.entity;
							 | 
						|
								
							 | 
						|
								import lombok.Data;
							 | 
						|
								
							 | 
						|
								import java.io.Serializable;
							 | 
						|
								import java.util.Date;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * @author yanpeng
							 | 
						|
								 * @version 1.0
							 | 
						|
								 * @desc TODO
							 | 
						|
								 * @company 北京中经网软件有限公司
							 | 
						|
								 * @date 2020/11/6 14:06
							 | 
						|
								 */
							 | 
						|
								@Data
							 | 
						|
								public class Holiday implements Serializable {
							 | 
						|
								    private String username = "nelson";
							 | 
						|
								    private Date startTime = new Date();
							 | 
						|
								    private Date endTime;
							 | 
						|
								    private Float num;
							 | 
						|
								    private String reason = "有事请假";
							 | 
						|
								    private String type = "事假";
							 | 
						|
								}
							 | 
						|
								
							 |