| | |
| | | package com.doumee.dao.business.model; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import lombok.Data; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | @ExcelColumn(name="参数4") |
| | | private String param4; |
| | | |
| | | |
| | | @ApiModelProperty(value = "月台名称") |
| | | @TableField(exist = false) |
| | | private String platformName; |
| | | |
| | | @ApiModelProperty(value = "月台组主键") |
| | | @TableField(exist = false) |
| | | private Integer platformGroupId; |
| | | |
| | | @ApiModelProperty(value = "月台组名称") |
| | | @TableField(exist = false) |
| | | private String platformGroupName; |
| | | |
| | | @ApiModelProperty(value = "前车牌照") |
| | | @TableField(exist = false) |
| | | private String carCodeFront; |
| | | |
| | | @ApiModelProperty(value = "后车牌照") |
| | | @TableField(exist = false) |
| | | private String carCodeBack; |
| | | |
| | | @ApiModelProperty(value = "开始作业时间起") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @TableField(exist = false) |
| | | private Date beginWorkDateStart; |
| | | |
| | | @ApiModelProperty(value = "开始作业时间止") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @TableField(exist = false) |
| | | private Date beginWorkDateEnd; |
| | | |
| | | @ApiModelProperty(value = "多状态查询 多个以,分割") |
| | | @TableField(exist = false) |
| | | private String queryStatus; |
| | | |
| | | @ApiModelProperty(value = "作业唯一标识(承运单号)") |
| | | @TableField(exist = false) |
| | | private String billCode; |
| | | |
| | | @ApiModelProperty(value = "合同号") |
| | | @TableField(exist = false) |
| | | private String contractNum; |
| | | |
| | | @ApiModelProperty(value = "总运输量", example = "1") |
| | | @TableField(exist = false) |
| | | private BigDecimal totalNum; |
| | | |
| | | } |