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
1a88ec37
Commit
1a88ec37
authored
Apr 28, 2025
by
tianbo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
企业自查bug修改
parent
a2e32306
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
9 deletions
+11
-9
TzsAppService.java
.../amos/boot/module/app/biz/service/impl/TzsAppService.java
+9
-7
ReginStepEnum.java
...join/amos/boot/module/common/api/enums/ReginStepEnum.java
+1
-1
StCommonServiceImpl.java
...odule/statistcs/biz/service/impl/StCommonServiceImpl.java
+1
-1
No files found.
amos-boot-system-tzs/amos-boot-module-app/amos-boot-module-app-biz/src/main/java/com/yeejoin/amos/boot/module/app/biz/service/impl/TzsAppService.java
View file @
1a88ec37
...
...
@@ -511,15 +511,17 @@ public class TzsAppService {
if
(!
ValidationUtil
.
isEmpty
(
map
.
get
(
"fieldValue"
)))
{
JSONArray
jsonArray
=
JSON
.
parseArray
(
String
.
valueOf
(
map
.
get
(
"fieldValue"
)));
JSONArray
json
=
new
JSONArray
();
for
(
Object
obj
:
jsonArray
)
{
JSONObject
object
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
obj
));
if
(!
ValidationUtil
.
isEmpty
(
object
))
{
object
.
getString
(
"url"
);
object
.
put
(
"url"
,
object
.
getString
(
"url"
));
json
.
add
(
object
);
if
(!
ValidationUtil
.
isEmpty
(
jsonArray
))
{
for
(
Object
obj
:
jsonArray
)
{
JSONObject
object
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
obj
));
if
(!
ValidationUtil
.
isEmpty
(
object
))
{
object
.
getString
(
"url"
);
object
.
put
(
"url"
,
object
.
getString
(
"url"
));
json
.
add
(
object
);
}
}
array
.
addAll
(
json
);
}
array
.
addAll
(
json
);
}
// 删除所有附件
iterator
.
remove
();
...
...
amos-boot-system-tzs/amos-boot-module-common/amos-boot-module-common-api/src/main/java/com/yeejoin/amos/boot/module/common/api/enums/ReginStepEnum.java
View file @
1a88ec37
...
...
@@ -20,7 +20,7 @@ public enum ReginStepEnum {
/**
* 西咸新区
*/
XIXIAN
(
"617000"
,
"西咸新区"
,
"map"
),
//
XIXIAN("617000", "西咸新区", "map"),
/**
* 韩城市
*/
...
...
amos-boot-system-tzs/amos-boot-module-statistics/amos-boot-module-statistics-biz/src/main/java/com/yeejoin/amos/boot/module/statistcs/biz/service/impl/StCommonServiceImpl.java
View file @
1a88ec37
...
...
@@ -107,7 +107,7 @@ public class StCommonServiceImpl {
}
private
void
initReginCode
()
{
Collection
<
RegionModel
>
result
=
Systemctl
.
regionClient
.
queryForTree
(
null
).
getResult
();
Collection
<
RegionModel
>
result
=
Systemctl
.
regionClient
.
queryForTree
ByAgencyCodeRightLike
(
null
).
getResult
();
result
.
forEach
(
r
->
{
RegionModel
regionModel
=
new
RegionModel
();
BeanUtil
.
copyProperties
(
r
,
regionModel
);
...
...
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