package com.ruoyi.system.vo.system;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.system.model.TTask;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.models.auth.In;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.time.LocalDateTime;
|
|
@Data
|
@ApiModel(value = "任务进度列表分页VO")
|
public class ProgressListVO implements Serializable {
|
|
@Excel(name = "姓名", width = 20,orderNum = "1")
|
@ApiModelProperty(value = "姓名")
|
private String nickName;
|
@Excel(name = "电话", width = 20,orderNum = "2")
|
@ApiModelProperty(value = "电话")
|
private String phonenumber;
|
@Excel(name = "所属部门", width = 20,orderNum = "3")
|
@ApiModelProperty(value = "所属部门")
|
private String deptName;
|
@Excel(name = "计划名称", width = 20,orderNum = "4")
|
@ApiModelProperty("计划名称")
|
private String templateName;
|
@Excel(name = "计划周期", width = 20,orderNum = "5")
|
@ApiModelProperty("计划周期")
|
private String templateDate;
|
@Excel(name = "应生成计划数", width = 20,orderNum = "6")
|
@ApiModelProperty(value = "应生成计划数")
|
private Integer num1;
|
@Excel(name = "已生成任务数", width = 20,orderNum = "7")
|
@ApiModelProperty(value = "已生成任务数")
|
private Integer num2;
|
@Excel(name = "已完成任务数", width = 20,orderNum = "9")
|
@ApiModelProperty(value = "已完成任务数")
|
private Integer num3;
|
@Excel(name = "任务进度(%)", width = 20,orderNum = "10")
|
@ApiModelProperty(value = "任务进度(%)")
|
private BigDecimal num4;
|
@Excel(name = "计划请假天数", width = 20,orderNum = "11")
|
@ApiModelProperty(value = "计划请假天数")
|
private Long num5;
|
|
private String id;
|
|
@ApiModelProperty(value = "项目部/片区id")
|
private String projectId;
|
|
@ApiModelProperty(value = "任务状态:1未执行、2超时、3待确认、4待整改、5整改完成、6已完成")
|
private Integer status;
|
|
@ApiModelProperty(value = "保洁员id")
|
private String cleanerId;
|
|
@ApiModelProperty(value = "点位id")
|
private String locationId;
|
|
@ApiModelProperty(value = "巡检员id 对应sys_user表")
|
private String patrolInspector;
|
|
@ApiModelProperty(value = "执行日期")
|
@JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
|
private LocalDateTime implementTime;
|
|
@ApiModelProperty(value = "执行日期前端传递")
|
private String implementTime1;
|
|
@ApiModelProperty(value = "任务类型 1日常任务 2自建任务")
|
private Integer taskType;
|
|
@ApiModelProperty(value = "巡检员所属部门id")
|
private String patrolInspectorDept;
|
@ApiModelProperty(value = "任务名称")
|
private String taskName;
|
@ApiModelProperty(value = "任务编号")
|
private String taskCode;
|
@ApiModelProperty(value = "模板id 日常任务存储")
|
private String templateId;
|
@ApiModelProperty(value = "模板id 日常任务存储")
|
private Long userId;
|
@ApiModelProperty(value = "点位名称")
|
private String locationName;
|
|
}
|