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
7cc238ff
Commit
7cc238ff
authored
Dec 30, 2022
by
chenzhao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
定时任务增加获取token
parent
d82cfc9d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
FireFightingSystemServiceImpl.java
...uipmanage/service/impl/FireFightingSystemServiceImpl.java
+13
-0
No files found.
amos-boot-module/amos-boot-module-biz/amos-boot-module-equip-biz/src/main/java/com/yeejoin/equipmanage/service/impl/FireFightingSystemServiceImpl.java
View file @
7cc238ff
...
...
@@ -48,6 +48,7 @@ import org.springframework.util.CollectionUtils;
import
org.springframework.util.ObjectUtils
;
import
org.springframework.util.StringUtils
;
import
org.springframework.web.multipart.MultipartFile
;
import
org.typroject.tyboot.core.foundation.context.RequestContext
;
import
org.typroject.tyboot.core.foundation.utils.ValidationUtil
;
import
org.typroject.tyboot.core.restful.exception.instance.BadRequest
;
...
...
@@ -1648,6 +1649,10 @@ public class FireFightingSystemServiceImpl extends ServiceImpl<FireFightingSyste
try
{
filepdf
=
instance
.
getWordFileItem
(
DataMap
,
null
,
WordTemplateTypeEum
.
iotMonthReport
.
getTemplateFile
());
filepdf
.
getAbsolutePath
();
Token
token
=
remoteSecurityService
.
getServerToken
();
RequestContext
.
setToken
(
token
.
getToke
());
RequestContext
.
setProduct
(
token
.
getProduct
());
RequestContext
.
setAppKey
(
token
.
getAppKey
());
MultipartFile
multipartFile
=
new
MyByteArrayMultipartFile
(
"file"
,
"file.pdf"
,
"application/pdf"
,
file2byte
(
filepdf
));
FeignClientResult
<
Map
<
String
,
String
>>
result
=
Systemctl
.
fileStorageClient
.
updateCommonFile
(
multipartFile
);
if
(
result
!=
null
)
{
...
...
@@ -1841,6 +1846,10 @@ public class FireFightingSystemServiceImpl extends ServiceImpl<FireFightingSyste
try
{
filepdf
=
instance
.
getWordFileItem
(
dataMap
,
null
,
WordTemplateTypeEum
.
iotWeekReport
.
getTemplateFile
());
filepdf
.
getAbsolutePath
();
Token
token
=
remoteSecurityService
.
getServerToken
();
RequestContext
.
setToken
(
token
.
getToke
());
RequestContext
.
setProduct
(
token
.
getProduct
());
RequestContext
.
setAppKey
(
token
.
getAppKey
());
MultipartFile
multipartFile
=
new
MyByteArrayMultipartFile
(
"file"
,
"file.pdf"
,
"application/pdf"
,
file2byte
(
filepdf
));
FeignClientResult
<
Map
<
String
,
String
>>
result
=
Systemctl
.
fileStorageClient
.
updateCommonFile
(
multipartFile
);
if
(
result
!=
null
)
{
...
...
@@ -2015,6 +2024,10 @@ public class FireFightingSystemServiceImpl extends ServiceImpl<FireFightingSyste
try
{
filepdf
=
instance
.
getWordFileItem
(
dataMap
,
null
,
WordTemplateTypeEum
.
iotDayReport
.
getTemplateFile
());
filepdf
.
getAbsolutePath
();
Token
token
=
remoteSecurityService
.
getServerToken
();
RequestContext
.
setToken
(
token
.
getToke
());
RequestContext
.
setProduct
(
token
.
getProduct
());
RequestContext
.
setAppKey
(
token
.
getAppKey
());
MultipartFile
multipartFile
=
new
MyByteArrayMultipartFile
(
"file"
,
"file.pdf"
,
"application/pdf"
,
file2byte
(
filepdf
));
FeignClientResult
<
Map
<
String
,
String
>>
result
=
Systemctl
.
fileStorageClient
.
updateCommonFile
(
multipartFile
);
if
(
result
!=
null
)
{
...
...
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