Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tax-sys-nacos
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
caoxiaohong
tax-sys-nacos
Commits
b3dbcde8
Commit
b3dbcde8
authored
Apr 22, 2025
by
ddx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加日志管理接口
parent
775b3661
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
tax-token/token-service/src/main/java/com/tax/token/service/api/TkRealTokenLogService.java
+1
-0
tax-token/token-service/src/main/java/com/tax/token/service/impl/TkRealTokenLogServiceImpl.java
+5
-0
tax-token/token-web/src/main/java/com/tax/token/web/controller/TokenReportController.java
+5
-0
No files found.
tax-token/token-service/src/main/java/com/tax/token/service/api/TkRealTokenLogService.java
View file @
b3dbcde8
...
...
@@ -15,4 +15,5 @@ public interface TkRealTokenLogService {
String
queryRealTokenById
(
String
applyId
);
CleanCookieVo
cleanTokenById
(
String
applyId
);
String
queryRealTokenByTokenId
(
String
applyId
);
}
tax-token/token-service/src/main/java/com/tax/token/service/impl/TkRealTokenLogServiceImpl.java
View file @
b3dbcde8
...
...
@@ -165,4 +165,9 @@ public class TkRealTokenLogServiceImpl implements TkRealTokenLogService {
return
cleanMap
;
}
public
String
queryRealTokenByTokenId
(
String
applyId
){
TkRealTokenLog
realTokenLog
=
realTokenLogMapper
.
selectByPrimaryKey
(
Integer
.
parseInt
(
applyId
));
return
JSON
.
toJSONString
(
realTokenLog
);
}
}
tax-token/token-web/src/main/java/com/tax/token/web/controller/TokenReportController.java
View file @
b3dbcde8
...
...
@@ -58,4 +58,9 @@ public class TokenReportController {
result
.
setData
(
tkRealTokenLogService
.
cleanTokenById
(
applyId
));
return
JSON
.
toJSONString
(
result
);
}
@RequestMapping
(
value
=
"/queryRealTokenByTokenId"
,
method
=
RequestMethod
.
GET
)
public
String
queryRealTokenByTokenId
(
String
applyId
){
return
tkRealTokenLogService
.
queryRealTokenByTokenId
(
applyId
);
}
}
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