| | |
| | | */ |
| | | package org.sxkj.gd.workorder.entity; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | import lombok.EqualsAndHashCode; |
| | | import org.springblade.core.mp.base.BaseEntity; |
| | | |
| | | import org.sxkj.common.handler.ListToStringTypeHandler; |
| | | import org.sxkj.common.handler.StringToIntegerTypeHandler; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 巡查任务表 实体类 |
| | |
| | | */ |
| | | @ApiModelProperty(value = "推荐飞手名称") |
| | | private String recommendFlyerName; |
| | | |
| | | /** |
| | | * 设备飞手ID |
| | | */ |
| | | @ApiModelProperty(value = "设备飞手ID") |
| | | private String deviceFlyerId; |
| | | |
| | | // 算法 algorithmIds |
| | | @ApiModelProperty("算法ids") |
| | | @TableField(typeHandler = ListToStringTypeHandler.class) |
| | | private List<String> algorithmIds; |
| | | |
| | | /** |
| | | * 关联设备ID |
| | | */ |
| | | @ApiModelProperty(value = "关联设备ID") |
| | | private String deviceId; |
| | | private Long deviceId; |
| | | /** |
| | | * 任务描述 |
| | | */ |
| | |
| | | * 状态:0待签收、1拒绝签收、2已撤回、3待审核、4审核驳回、5审核通过、6待验收、7拒绝验收、8验收通过 |
| | | */ |
| | | @ApiModelProperty(value = "状态:0待签收、1拒绝签收、2已撤回、3待审核、4审核驳回、5审核通过、6待验收、7拒绝验收、8验收通过") |
| | | @TableField(typeHandler = StringToIntegerTypeHandler.class) |
| | | private String taskStatus; |
| | | /** |
| | | * 区域编码 |