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
a48e6d48
Commit
a48e6d48
authored
Jun 22, 2025
by
韩桐桐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导出BUGFIX
parent
c566ae74
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
JgTableDataExportServiceImpl.java
...ule/jg/biz/service/impl/JgTableDataExportServiceImpl.java
+1
-1
DictUtil.java
...a/com/yeejoin/amos/boot/module/jg/biz/utils/DictUtil.java
+3
-3
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgTableDataExportServiceImpl.java
View file @
a48e6d48
...
@@ -113,7 +113,7 @@ public class JgTableDataExportServiceImpl implements IJgTableDataExportService {
...
@@ -113,7 +113,7 @@ public class JgTableDataExportServiceImpl implements IJgTableDataExportService {
private
final
String
DOWN_LOAD_START_TEMP
=
"{\"id\":\"%s\",\"status\":\"starting\",\"fileName\":\"%s\",\"time\":\"%s\"}"
;
private
final
String
DOWN_LOAD_START_TEMP
=
"{\"id\":\"%s\",\"status\":\"starting\",\"fileName\":\"%s\",\"time\":\"%s\"}"
;
private
final
String
BUCKET_NAME
=
"upload"
;
private
final
String
BUCKET_NAME
=
"upload"
;
private
final
String
UPLOAD_PATH
=
"/tzs/excelTempFile"
;
private
final
String
UPLOAD_PATH
=
"/tzs/excelTempFile"
;
private
final
int
PAGE_SIZE
=
100
;
private
final
int
PAGE_SIZE
=
100
0
;
private
final
String
DOWNLOAD_TOPIC
=
"/topic/download/excel/%s"
;
private
final
String
DOWNLOAD_TOPIC
=
"/topic/download/excel/%s"
;
private
final
ExecutorService
executorService
=
Executors
.
newFixedThreadPool
(
Runtime
.
getRuntime
().
availableProcessors
());
private
final
ExecutorService
executorService
=
Executors
.
newFixedThreadPool
(
Runtime
.
getRuntime
().
availableProcessors
());
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/utils/DictUtil.java
View file @
a48e6d48
...
@@ -51,7 +51,7 @@ public class DictUtil {
...
@@ -51,7 +51,7 @@ public class DictUtil {
String
typeHandler
=
annotation
.
typeHandler
();
String
typeHandler
=
annotation
.
typeHandler
();
String
name
=
""
;
String
name
=
""
;
if
(
"null"
.
equals
(
code
))
{
if
(
"null"
.
equals
(
code
))
{
return
;
continue
;
}
}
Object
handler
=
SpringUtil
.
getBean
(
typeHandler
);
Object
handler
=
SpringUtil
.
getBean
(
typeHandler
);
...
@@ -71,11 +71,11 @@ public class DictUtil {
...
@@ -71,11 +71,11 @@ public class DictUtil {
}
else
if
(
field
.
isAnnotationPresent
(
JsonFormat
.
class
))
{
}
else
if
(
field
.
isAnnotationPresent
(
JsonFormat
.
class
))
{
try
{
try
{
Object
value
=
field
.
get
(
data
);
Object
value
=
field
.
get
(
data
);
if
(
value
==
null
)
return
;
if
(
value
==
null
)
continue
;
JsonFormat
jsonFormat
=
field
.
getAnnotation
(
JsonFormat
.
class
);
JsonFormat
jsonFormat
=
field
.
getAnnotation
(
JsonFormat
.
class
);
String
pattern
=
jsonFormat
.
pattern
();
String
pattern
=
jsonFormat
.
pattern
();
if
(
pattern
==
null
||
pattern
.
isEmpty
())
return
;
if
(
pattern
==
null
||
pattern
.
isEmpty
())
continue
;
String
formatted
=
null
;
String
formatted
=
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