Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-enterprise
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-platform-enterprise
Commits
68e52203
Commit
68e52203
authored
Mar 25, 2020
by
zhiwj
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改url
parent
72ad8d77
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
2 deletions
+5
-2
Constants.java
.../src/main/java/com/gic/enterprise/constant/Constants.java
+2
-0
TodoItemDTO.java
...api/src/main/java/com/gic/enterprise/dto/TodoItemDTO.java
+2
-1
AuditLogApiServiceImpl.java
...enterprise/service/outer/impl/AuditLogApiServiceImpl.java
+1
-1
No files found.
gic-platform-enterprise-api/src/main/java/com/gic/enterprise/constant/Constants.java
View file @
68e52203
...
...
@@ -56,4 +56,6 @@ public interface Constants {
*/
String
ENTERPRISE_BILLING_SMS_PACKAGE_COUNT
=
"enterprise_billing_sms_package_count"
;
String
AUDIT_TODO_URL
=
"/damo-system/user/approve"
;
}
gic-platform-enterprise-api/src/main/java/com/gic/enterprise/dto/TodoItemDTO.java
View file @
68e52203
...
...
@@ -71,7 +71,8 @@ public class TodoItemDTO implements Serializable {
private
Integer
status
;
/**
* 存事项的需要反查的内容, 一般是id
* 跳转的url 不加域名 比如: /damo-system/user/approve?id=1
*
*/
@NotBlank
(
message
=
"url不能为空"
,
groups
=
SaveValidView
.
class
)
private
String
itemInfoUrl
;
...
...
gic-platform-enterprise-service/src/main/java/com/gic/enterprise/service/outer/impl/AuditLogApiServiceImpl.java
View file @
68e52203
...
...
@@ -157,7 +157,7 @@ public class AuditLogApiServiceImpl implements AuditLogApiService {
// 事项code
todoItemDTO
.
setItemType
(
com
.
gic
.
enterprise
.
constant
.
Constants
.
TODO_ITEM_AUDIT
);
// todo 事项url
todoItemDTO
.
setItemInfoUrl
(
"www.baidu.com
?auditLogId="
+
auditLogId
);
todoItemDTO
.
setItemInfoUrl
(
com
.
gic
.
enterprise
.
constant
.
Constants
.
AUDIT_TODO_URL
+
"
?auditLogId="
+
auditLogId
);
todoItemApiService
.
saveTodoItem
(
todoItemDTO
);
}
}
...
...
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