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
ed83939d
Commit
ed83939d
authored
Jul 31, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(开通):bug修改
1.导出异常信息不抛处修改
parent
17b620c5
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
+6
-3
JyjcOpeningApplicationVo.java
...mos/boot/module/jyjc/api/vo/JyjcOpeningApplicationVo.java
+1
-1
JyjcOpeningApplicationMapper.xml
...rc/main/resources/mapper/JyjcOpeningApplicationMapper.xml
+1
-1
JyjcOpeningApplicationController.java
...jyjc/biz/controller/JyjcOpeningApplicationController.java
+4
-1
No files found.
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-api/src/main/java/com/yeejoin/amos/boot/module/jyjc/api/vo/JyjcOpeningApplicationVo.java
View file @
ed83939d
...
@@ -37,7 +37,7 @@ public class JyjcOpeningApplicationVo {
...
@@ -37,7 +37,7 @@ public class JyjcOpeningApplicationVo {
String
remark
;
String
remark
;
@ExcelProperty
(
value
=
"办理状态"
,
index
=
7
)
@ExcelProperty
(
value
=
"办理状态"
,
index
=
7
)
String
status
Name
;
String
status
;
@ExcelProperty
(
value
=
"办理日期"
,
index
=
8
)
@ExcelProperty
(
value
=
"办理日期"
,
index
=
8
)
@DateTimeFormat
(
"yyyy-MM-dd"
)
@DateTimeFormat
(
"yyyy-MM-dd"
)
...
...
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-api/src/main/resources/mapper/JyjcOpeningApplicationMapper.xml
View file @
ed83939d
...
@@ -125,6 +125,6 @@
...
@@ -125,6 +125,6 @@
select * from tz_jyjc_opening_application where sequence_nbr in
select * from tz_jyjc_opening_application where sequence_nbr in
<foreach
collection=
"list"
item=
"id"
index=
"index"
open=
"("
close=
")"
separator=
","
>
<foreach
collection=
"list"
item=
"id"
index=
"index"
open=
"("
close=
")"
separator=
","
>
#{id}
#{id}
</foreach>
;
</foreach>
</select>
</select>
</mapper>
</mapper>
amos-boot-system-tzs/amos-boot-module-jyjc/amos-boot-module-jyjc-biz/src/main/java/com/yeejoin/amos/boot/module/jyjc/biz/controller/JyjcOpeningApplicationController.java
View file @
ed83939d
...
@@ -28,6 +28,7 @@ import org.springframework.web.bind.annotation.*;
...
@@ -28,6 +28,7 @@ import org.springframework.web.bind.annotation.*;
import
org.typroject.tyboot.core.foundation.context.RequestContext
;
import
org.typroject.tyboot.core.foundation.context.RequestContext
;
import
org.typroject.tyboot.core.foundation.enumeration.UserType
;
import
org.typroject.tyboot.core.foundation.enumeration.UserType
;
import
org.typroject.tyboot.core.restful.doc.TycloudOperation
;
import
org.typroject.tyboot.core.restful.doc.TycloudOperation
;
import
org.typroject.tyboot.core.restful.exception.instance.BadRequest
;
import
org.typroject.tyboot.core.restful.utils.ResponseHelper
;
import
org.typroject.tyboot.core.restful.utils.ResponseHelper
;
import
org.typroject.tyboot.core.restful.utils.ResponseModel
;
import
org.typroject.tyboot.core.restful.utils.ResponseModel
;
...
@@ -320,7 +321,9 @@ public class JyjcOpeningApplicationController extends BaseController {
...
@@ -320,7 +321,9 @@ public class JyjcOpeningApplicationController extends BaseController {
@GetMapping
(
value
=
"/exportdata"
)
@GetMapping
(
value
=
"/exportdata"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"检验业务开通列表导出"
,
notes
=
"检验业务开通列表导出"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"检验业务开通列表导出"
,
notes
=
"检验业务开通列表导出"
)
public
void
dataExport
(
HttpServletResponse
response
,
String
ids
)
{
public
void
dataExport
(
HttpServletResponse
response
,
String
ids
)
{
Assert
.
hasText
(
ids
,
"未选择导出数据"
);
if
(
StringUtils
.
isEmpty
(
ids
))
{
throw
new
BadRequest
(
"请选择需要导出的数据!"
);
}
jyjcOpeningApplicationServiceImpl
.
exportData
(
response
,
Arrays
.
asList
(
ids
.
split
(
","
)));
jyjcOpeningApplicationServiceImpl
.
exportData
(
response
,
Arrays
.
asList
(
ids
.
split
(
","
)));
}
}
...
...
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