| | |
| | | package cn.gistack.sm.patrol.entity; |
| | | |
| | | import cn.gistack.flow.core.entity.FlowEntity; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | | |
| | | /** |
| | | * @Description: 巡查类型 |
| | | * @Description: 巡查任务 |
| | | */ |
| | | @Data |
| | | @TableName("sm_patrol_task") |
| | | @EqualsAndHashCode(callSuper = false) |
| | | @Accessors(chain = true) |
| | | @ApiModel(value = "sm_patrol_task对象", description = "巡查任务") |
| | | public class PatrolTask extends TenantEntity { |
| | | public class PatrolTask extends FlowEntity { |
| | | /** |
| | | * 标题 |
| | | */ |
| | |
| | | */ |
| | | @ApiModelProperty(value = "问题数量") |
| | | private Integer problemCount; |
| | | |
| | | /** |
| | | * 流程定义id |
| | | */ |
| | | private String processDefinitionId; |
| | | /** |
| | | * 流程实例id |
| | | */ |
| | | private String processInstanceId; |
| | | |
| | | /** |
| | | * 工作流标识 是否上报 |
| | | */ |
| | | @TableField(exist = false) |
| | | private Boolean report; |
| | | |
| | | /** |
| | | * 工作流标识 是否上报至部门 |
| | | */ |
| | | @TableField(exist = false) |
| | | private Boolean toDept; |
| | | |
| | | /** |
| | | * 工作流标识 是否转送至技术负责人 |
| | | */ |
| | | @TableField(exist = false) |
| | | private Boolean toTech; |
| | | } |