Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
Project
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
项目统一框架
amos-boot-biz
Commits
1377429b
Commit
1377429b
authored
Jan 10, 2024
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加工作流返回model
parent
30f2954a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
65 additions
and
19 deletions
+65
-19
TaskModelDto.java
...com/yeejoin/amos/boot/module/jg/api/dto/TaskModelDto.java
+18
-19
WorkflowResultDto.java
...eejoin/amos/boot/module/jg/api/dto/WorkflowResultDto.java
+47
-0
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/dto/TaskModelDto.java
View file @
1377429b
...
...
@@ -12,18 +12,18 @@ import java.util.Date;
public
class
TaskModelDto
{
/**
* 工作流创建时间
*
*
/
*/
private
Date
flowCreateDate
;
/**
* 工作流返回节点名称
*
*
/
*/
private
String
taskName
;
/**
* 任务编号 可以使用申请单编号
*
*
/
*/
private
String
taskCode
;
/**
/**
* 摘要-来源
*/
private
String
taskContent
;
...
...
@@ -34,11 +34,11 @@ public class TaskModelDto {
private
String
taskDesc
;
/**
* 任务类型 从BusinessTypeEnum中获取自己对应类型code
*
*
*/
**/
private
String
taskType
;
/**
* 任务类型名称 汉字 从BusinessTypeEnum中获取自己对应类型名称
*
*
*/
**/
private
String
taskTypeLabel
;
/***
* 关联id 传工作流实例id
...
...
@@ -46,43 +46,42 @@ public class TaskModelDto {
private
String
relationId
;
/**
* 执行人id 从工作流中获取
*
*
*/
**/
private
String
executeUserIds
;
/**
* 任务状态 统一定义的枚举code 例如 6612 待受理
*
*
/
*/
private
Integer
taskStatus
;
/**
* 任务状态 统一定义的枚举code 例如 6612 待受理
*
*
/
*/
private
String
taskStatusLabel
;
/**
* 任务发起人id 不变 第一次提交的人
* 从业务表中 created_uesr_id
*
*
/
*/
private
String
startUserId
;
/**
* 任务发起人名称 不变
*
名字
*
*
/
* 名字
*/
private
String
startUser
;
/**
* 任务发起人所在单位 不变
*
* */
*/
private
String
startUserCompanyName
;
/**
* 任务发起人发起时间 不变
*
* */
*/
private
Date
startDate
;
/**
* 跳转路径
*
*
/
*/
private
String
routePath
;
/**
* 当前业务实体对象
*
*
/
*/
private
Object
model
;
}
}
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/dto/WorkflowResultDto.java
0 → 100644
View file @
1377429b
package
com
.
yeejoin
.
amos
.
boot
.
module
.
jg
.
api
.
dto
;
import
java.util.List
;
public
class
WorkflowResultDto
{
/**
* WORKFLOW实例ids
* */
String
instanceId
;
/**
* 下一步执行人角色
* */
String
nextExecutorRoleIds
;
String
nextTaskId
;
/**
* 下一步执行人用户id 待办用
* */
String
nextExecutorUserIds
;
/**
* 当前执行人
* */
String
curExecutorId
;
/**
* 当前节点任务名称
* */
String
taskName
;
/**
* 下一节点任务名称
* */
String
nextTaskName
;
/**
* 任务发起时间
*
*/
String
startTime
;
/**
*
* 下一节点code
*/
String
nextTaskCode
;
}
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