guoshilong
2023-04-24 fc030d197a869d5fecab582d36ff17be7e67cc3f
skjcmanager/skjcmanager-service/skjcmanager-sm/src/main/java/cn/gistack/sm/patrol/entity/PatrolTask.java
@@ -1,5 +1,7 @@
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;
@@ -12,14 +14,14 @@
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 {
   /**
    * 标题
    */
@@ -124,4 +126,31 @@
    */
   @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;
}