Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gdtel-gztel-school-center
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
吴学德
gdtel-gztel-school-center
Commits
da0bc338
Commit
da0bc338
authored
Apr 01, 2020
by
弓厶
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交流程步骤的实体类
parent
b59fc9fc
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
0 deletions
+82
-0
order/src/main/java/com/winsun/bean/Step.java
+82
-0
No files found.
order/src/main/java/com/winsun/bean/Step.java
0 → 100644
View file @
da0bc338
package
com
.
winsun
.
bean
;
import
com.baomidou.mybatisplus.annotations.TableId
;
import
com.baomidou.mybatisplus.annotations.TableName
;
import
lombok.Data
;
import
java.util.Date
;
/**
* 流程步骤
* @author Liph
* @datetime 2020-04-20/4/1 10:58
*/
@Data
@TableName
(
"sys_step"
)
public
class
Step
{
@TableId
private
String
id
;
/**
* 流程路径(主要用于队列执行的时候用)
*/
private
String
path
;
/**
* 步骤名称
*/
private
String
name
;
/**
* 步骤描述
*/
private
String
desc
;
/**
* 步骤所关联的表单
*/
private
String
formId
;
/**
* 创建时间
*/
private
Date
createTime
;
/**
* 流程步骤对应到的接口ID标识(例如全包类名)
*/
private
String
interfaceId
;
/**
* 下一步骤的流程ID主键
* 主要描述情况 A,不归属完成
*/
private
String
selectA
;
/**
* 选择情况A的时候,更新工单的状态值
*/
private
String
selectAval
;
/**
* 下一步骤的流程ID主键
* 主要描述情况 B,不归属完成
*/
private
String
selectB
;
/**
* 选择情况B的时候,更新工单的状态值
*/
private
String
slectBval
;
/**
* 下一步骤的流程ID主键
* 主要描述当前流程完成
*/
private
String
selectNext
;
/**
* 选择当前步骤完成,工单更新的状态值
*/
private
String
selectNextVal
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment