| | |
| | | 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; |
| | |
| | | @ExcelColumn(name="总运输量") |
| | | private BigDecimal totalNum; |
| | | |
| | | @ApiModelProperty(value = "前方排队数量", example = "1") |
| | | @TableField(exist = false) |
| | | private Long lineUpNum; |
| | | |
| | | @ApiModelProperty(value = "作业月台名称") |
| | | @TableField(exist = false) |
| | | private String platformName ; |
| | | |
| | | @ApiModelProperty(value = "距离签到点距离") |
| | | @TableField(exist = false) |
| | | private BigDecimal getDistance; |
| | | |
| | | } |