| | |
| | | package com.ruoyi.system.vo.system; |
| | | |
| | | import cn.afterturn.easypoi.excel.annotation.Excel; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.ruoyi.system.model.TTask; |
| | | import com.ruoyi.system.model.TTemplate; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | @ApiModel(value = "任务记录列表分页VO") |
| | | public class TaskListVO extends TTask { |
| | | |
| | | @Excel(name = "点位名称", width = 20,orderNum = "1") |
| | | @ApiModelProperty(value = "点位名称") |
| | | private String locationName; |
| | | @Excel(name = "点位类型", width = 20,orderNum = "2") |
| | | @ApiModelProperty(value = "点位类型名称") |
| | | private String locationTypeName; |
| | | @Excel(name = "所属项目部/部门", width = 20,orderNum = "3") |
| | | @ApiModelProperty(value = "部门名称") |
| | | private String deptName; |
| | | @Excel(name = "巡查员", width = 20,orderNum = "4") |
| | | @ApiModelProperty("巡查员名称") |
| | | private String patrolInspectorName; |
| | | @Excel(name = "联系电话", width = 20,orderNum = "5") |
| | | @ApiModelProperty("电话") |
| | | private String phonenumber; |
| | | @ApiModelProperty("图片 多个逗号拼接") |
| | | private String picture; |
| | | @Excel(name = "清洁情况", width = 20,orderNum = "6",replace = {"1_合格","2_不合格"}) |
| | | @ApiModelProperty(value = "清洁情况 1合格2不合格") |
| | | private Integer clearStatus; |
| | | @Excel(name = "备注说明", width = 20,orderNum = "7") |
| | | @ApiModelProperty(value = "备注") |
| | | private String remark; |
| | | @Excel(name = "完成日期", width = 20,orderNum = "9") |
| | | @ApiModelProperty(value = "完成时间") |
| | | private String finishTimeStr; |
| | | |
| | | } |