| package com.doumee.dao.web.reqeust; | 
|   | 
| import com.doumee.core.annotation.excel.ExcelColumn; | 
| import com.fasterxml.jackson.annotation.JsonFormat; | 
| import io.swagger.annotations.Api; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
| import java.math.BigDecimal; | 
| import java.util.Date; | 
|   | 
| /** | 
|  * Created by IntelliJ IDEA. | 
|  * | 
|  * @Author : Rk | 
|  * @create 2023/12/7 11:19 | 
|  */ | 
| @Data | 
| @Api(tags = "入园预约申请信息" ) | 
| public class PlatformBooksApplyDTO { | 
|   | 
|     @ApiModelProperty(value = "主键 - 修改使用") | 
|     private Integer id; | 
|     @ApiModelProperty(value = "合同号") | 
|     private String contractNum; | 
|   | 
|     @ApiModelProperty(value = "预计到场时间") | 
|     private Date arriveDate; | 
|   | 
|     @ApiModelProperty(value = "入库类型 0整托盘 1件烟", example = "1") | 
|     private Integer inType; | 
|   | 
|     @ApiModelProperty(value = "总运输量", example = "1") | 
|     private BigDecimal totalNum; | 
|   | 
|     @ApiModelProperty(value = "前车牌号") | 
|     private String carCodeFront; | 
|   | 
|     @ApiModelProperty(value = "后车牌号") | 
|     private String carCodeBack; | 
|   | 
|     @ApiModelProperty(value = "司机编码", example = "1") | 
|     private Integer driverId; | 
|   | 
|     @ApiModelProperty(value = "司机姓名") | 
|     private String driverName; | 
|   | 
|     @ApiModelProperty(value = "车牌号") | 
|     private String plateNum; | 
|   | 
|     @ApiModelProperty(value = "司机手机号") | 
|     private String driverPhone; | 
|   | 
|     @ApiModelProperty(value = "准运证照片") | 
|     private String transportImg; | 
|   | 
|     @ApiModelProperty(value = "入园原因") | 
|     private String inReason; | 
|   | 
|     @ApiModelProperty(value = "入园原因主键") | 
|     private Integer reasonId; | 
|   | 
|     @ApiModelProperty(value = "用户主键", hidden = true) | 
|     private Integer userId; | 
|   | 
| } |