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
a44c3271
Commit
a44c3271
authored
Sep 26, 2021
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
隐患流程修改
parent
25977a48
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
4 deletions
+13
-4
WorkflowFeignService.java
.../boot/biz/common/workflow/feign/WorkflowFeignService.java
+2
-1
LatentDangerFlowRecord.java
.../amos/latentdanger/dao/entity/LatentDangerFlowRecord.java
+6
-0
LatentDangerController.java
...entdanger/business/controller/LatentDangerController.java
+1
-2
LatentDangerServiceImpl.java
...danger/business/service/impl/LatentDangerServiceImpl.java
+0
-0
ILatentDangerService.java
...ntdanger/business/service/intfc/ILatentDangerService.java
+2
-1
LatentDangerDetailVo.java
...n/amos/latentdanger/business/vo/LatentDangerDetailVo.java
+2
-0
No files found.
amos-boot-biz-common/src/main/java/com/yeejoin/amos/boot/biz/common/workflow/feign/WorkflowFeignService.java
View file @
a44c3271
...
...
@@ -13,7 +13,8 @@ import com.alibaba.fastjson.JSONObject;
import
feign.Response
;
@FeignClient
(
name
=
"AMOS-API-WORKFLOW"
,
path
=
"workflow"
,
configuration
=
{
CommonMultipartSupportConfig
.
class
})
@FeignClient
(
name
=
"AMOS-API-WORKFLOW-chenhao"
,
path
=
"workflow"
,
configuration
=
{
CommonMultipartSupportConfig
.
class
})
public
interface
WorkflowFeignService
{
/**
* 发起流程
...
...
amos-boot-module/amos-boot-module-api/amos-boot-module-latentdanger-api/src/main/java/com/yeejoin/amos/latentdanger/dao/entity/LatentDangerFlowRecord.java
View file @
a44c3271
...
...
@@ -50,6 +50,9 @@ public class LatentDangerFlowRecord extends BasicEntity {
@Column
(
name
=
"execute_user_id"
)
private
String
executeUserId
;
@Column
(
name
=
"execute_user_name"
)
private
String
executeUserName
;
@Column
(
name
=
"execute_result"
)
private
String
executeResult
;
...
...
@@ -74,4 +77,7 @@ public class LatentDangerFlowRecord extends BasicEntity {
@Column
(
name
=
"execute_department_id"
)
private
String
executeDepartmentId
;
@Column
(
name
=
"execute_department_name"
)
private
String
executeDepartmentName
;
}
amos-boot-module/amos-boot-module-biz/amos-boot-module-latentdanger-biz/src/main/java/com/yeejoin/amos/latentdanger/business/controller/LatentDangerController.java
View file @
a44c3271
...
...
@@ -146,9 +146,8 @@ public class LatentDangerController extends BaseController {
String
departmentName
=
getDepartmentName
(
reginParams
);
String
userRealName
=
user
.
getRealName
();
String
userId
=
user
.
getUserId
();
RoleBo
role
=
reginParams
.
getRole
();
DangerExecuteSubmitDto
executeSubmitDto
=
iLatentDangerService
.
execute
(
latentDangerExecuteParam
,
userId
,
userRealName
,
deptId
,
departmentName
,
r
ole
);
userRealName
,
deptId
,
departmentName
,
r
eginParams
);
// iLatentDangerService.freshRiskJudgmentLangerCount(latentDangerExecuteParam);//更新统计
// 执行通过,发送执行结果消息
// if (executeSubmitDto.getIsOk()) {
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-latentdanger-biz/src/main/java/com/yeejoin/amos/latentdanger/business/service/impl/LatentDangerServiceImpl.java
View file @
a44c3271
This diff is collapsed.
Click to expand it.
amos-boot-module/amos-boot-module-biz/amos-boot-module-latentdanger-biz/src/main/java/com/yeejoin/amos/latentdanger/business/service/intfc/ILatentDangerService.java
View file @
a44c3271
...
...
@@ -4,6 +4,7 @@ import java.util.List;
import
java.util.Map
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.yeejoin.amos.boot.biz.common.bo.ReginParams
;
import
com.yeejoin.amos.feign.systemctl.model.DictionarieValueModel
;
import
com.yeejoin.amos.latentdanger.business.param.LatentDangerDto
;
import
com.yeejoin.amos.latentdanger.business.param.LatentDangerExecuteParam
;
...
...
@@ -55,7 +56,7 @@ public interface ILatentDangerService {
* @return
*/
DangerExecuteSubmitDto
execute
(
LatentDangerExecuteParam
latentDangerExecuteParam
,
String
userId
,
String
userRealName
,
String
departmentId
,
String
departmentName
,
R
oleBo
role
)
throws
Exception
;
String
userRealName
,
String
departmentId
,
String
departmentName
,
R
eginParams
reginParams
)
throws
Exception
;
ResponseModel
<
LatentDangerDetailVo
>
detail
(
Long
dangerId
,
String
userId
,
boolean
isFinish
)
throws
Exception
;
...
...
amos-boot-module/amos-boot-module-biz/amos-boot-module-latentdanger-biz/src/main/java/com/yeejoin/amos/latentdanger/business/vo/LatentDangerDetailVo.java
View file @
a44c3271
...
...
@@ -31,6 +31,8 @@ public class LatentDangerDetailVo {
private
Date
reformLimitDate
;
private
String
reformLimitDateStr
;
private
JSONObject
reformJson
;
private
Long
currentFlowRecordId
;
...
...
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