|
@@ -1,5 +1,6 @@
|
|
|
package com.huaxu.process.entity;
|
|
|
|
|
|
+import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
import lombok.Data;
|
|
@@ -46,7 +47,7 @@ public class ProcessDefinition implements Serializable {
|
|
|
/**
|
|
|
* 任务类型
|
|
|
*/
|
|
|
- @ApiModelProperty(value = "任务类型")
|
|
|
+ @ApiModelProperty(value = "任务类型,1表务工单,2停通水工单,3抢修工单,4漏点定位工单,5测漏工单,6违章跑水工单,7巡检任务,8测漏任务,9养护任务")
|
|
|
private Integer taskType;
|
|
|
/**
|
|
|
* 公司id
|
|
@@ -56,7 +57,7 @@ public class ProcessDefinition implements Serializable {
|
|
|
/**
|
|
|
* 业务类型
|
|
|
*/
|
|
|
- @ApiModelProperty(value = "业务类型")
|
|
|
+ @ApiModelProperty(value = "业务类型,1工单,2任务")
|
|
|
private Integer businessType;
|
|
|
/**
|
|
|
* 关联activiti
|
|
@@ -118,6 +119,7 @@ public class ProcessDefinition implements Serializable {
|
|
|
/**
|
|
|
* 创建时间
|
|
|
*/
|
|
|
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss" , timezone = "GMT+8")
|
|
|
@ApiModelProperty(value = "创建时间",hidden = true)
|
|
|
private Date dateCreate;
|
|
|
/**
|