| package com.doumee.dao.web.response; | 
|   | 
| import com.doumee.core.utils.Date; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
| import org.springframework.format.annotation.DateTimeFormat; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2024/1/2 9:51 | 
|  */ | 
| @Data | 
| public class VisitRecordVO { | 
|   | 
|     @ApiModelProperty(value = "主键") | 
|     private Integer id; | 
|   | 
|     @ApiModelProperty(value = "访客姓名") | 
|     private String name; | 
|   | 
|     @ApiModelProperty(value = "进厂日期") | 
|     private String startTime; | 
|   | 
|     @ApiModelProperty(value = "出厂日期") | 
|     private String endTime; | 
|   | 
|     @ApiModelProperty(value = "入厂人数") | 
|     private Integer inNum; | 
|   | 
|     @ApiModelProperty(value = "来访事由") | 
|     private String reason; | 
|   | 
|     @ApiModelProperty(value = "创建时间") | 
|     private String createDate; | 
|   | 
|   | 
|   | 
| } |