Toggle navigation
Toggle navigation
This project
Loading...
Sign in
jiujian
/
client-customer-order-api
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
zhuyifan
2024-12-10 09:21:46 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
67c9e11be1f703e7a698d168be3c66a2c2d3b7ca
67c9e11b
1 parent
07f1c668
fix
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/infoloop/tianting/streamController/SettlementController.java
src/main/java/com/infoloop/tianting/streamController/SettlementController.java
View file @
67c9e11
package
com
.
infoloop
.
tianting
.
streamController
;
import
cn.dev33.satoken.annotation.SaIgnore
;
import
com.github.xiaoymin.knife4j.annotations.ApiSupport
;
import
com.infoloop.tianting.model.dto.SettlementDTO.SettlementRequestDto
;
import
com.infoloop.tianting.service.SettlementService
;
...
...
@@ -17,7 +18,6 @@ import org.springframework.web.bind.annotation.PostMapping;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.ResponseStatus
;
import
org.springframework.web.bind.annotation.RestController
;
import
springfox.documentation.annotations.ApiIgnore
;
import
javax.validation.Valid
;
import
java.io.ByteArrayOutputStream
;
...
...
@@ -31,7 +31,7 @@ import java.io.ByteArrayOutputStream;
public
class
SettlementController
{
private
final
SettlementService
settlementService
;
@
Api
Ignore
@
Sa
Ignore
@ApiOperation
(
value
=
"企业端结算账单生成excel"
)
@PostMapping
(
"/enterprise/settlement/generate-excel"
)
@ResponseStatus
(
HttpStatus
.
OK
)
...
...
Please
register
or
login
to post a comment