| | |
| | | @Excel(name = "流程业务实例id 一个流程业务唯一,本表中也唯一", width = 15) |
| | | @ApiModelProperty(value = "流程业务实例id 一个流程业务唯一,本表中也唯一") |
| | | private String processInstanceId; |
| | | @ApiModelProperty(value = "流程类型") |
| | | @Dict(dicCode = "flow_type") |
| | | private String category; |
| | | /**流程业务简要描述*/ |
| | | @Excel(name = "流程业务简要描述", width = 15) |
| | | @ApiModelProperty(value = "流程业务简要描述") |
| | |
| | | @TableField(exist = false) |
| | | private String taskStatus; |
| | | |
| | | @ApiModelProperty("历史流程实例ID") |
| | | private transient String hisProcInsId; |
| | | |
| | | private transient String flowName; |
| | | |
| | | /**流程开始时间*/ |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | private transient Date startTime; |
| | | |
| | | /**流程结束时间*/ |
| | | @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | private transient Date endTime; |
| | | |
| | | /**当前用户*/ |
| | | private transient String currentUser; |
| | | |
| | | @ApiModelProperty(value = "前驱节点") |
| | | private transient String preNode; |
| | | |
| | | /**处理时长(分钟)*/ |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "处理时长(分钟)") |
| | | private transient String duration; |
| | | |
| | | } |