Showing
1 changed file
with
2 additions
and
2 deletions
| 1 | package com.infoloop.tianting.streamController; | 1 | package com.infoloop.tianting.streamController; |
| 2 | 2 | ||
| 3 | +import cn.dev33.satoken.annotation.SaIgnore; | ||
| 3 | import com.github.xiaoymin.knife4j.annotations.ApiSupport; | 4 | import com.github.xiaoymin.knife4j.annotations.ApiSupport; |
| 4 | import com.infoloop.tianting.model.dto.SettlementDTO.SettlementRequestDto; | 5 | import com.infoloop.tianting.model.dto.SettlementDTO.SettlementRequestDto; |
| 5 | import com.infoloop.tianting.service.SettlementService; | 6 | import com.infoloop.tianting.service.SettlementService; |
| ... | @@ -17,7 +18,6 @@ import org.springframework.web.bind.annotation.PostMapping; | ... | @@ -17,7 +18,6 @@ import org.springframework.web.bind.annotation.PostMapping; |
| 17 | import org.springframework.web.bind.annotation.RequestBody; | 18 | import org.springframework.web.bind.annotation.RequestBody; |
| 18 | import org.springframework.web.bind.annotation.ResponseStatus; | 19 | import org.springframework.web.bind.annotation.ResponseStatus; |
| 19 | import org.springframework.web.bind.annotation.RestController; | 20 | import org.springframework.web.bind.annotation.RestController; |
| 20 | -import springfox.documentation.annotations.ApiIgnore; | ||
| 21 | 21 | ||
| 22 | import javax.validation.Valid; | 22 | import javax.validation.Valid; |
| 23 | import java.io.ByteArrayOutputStream; | 23 | import java.io.ByteArrayOutputStream; |
| ... | @@ -31,7 +31,7 @@ import java.io.ByteArrayOutputStream; | ... | @@ -31,7 +31,7 @@ import java.io.ByteArrayOutputStream; |
| 31 | public class SettlementController { | 31 | public class SettlementController { |
| 32 | private final SettlementService settlementService; | 32 | private final SettlementService settlementService; |
| 33 | 33 | ||
| 34 | - @ApiIgnore | 34 | + @SaIgnore |
| 35 | @ApiOperation(value = "企业端结算账单生成excel") | 35 | @ApiOperation(value = "企业端结算账单生成excel") |
| 36 | @PostMapping("/enterprise/settlement/generate-excel") | 36 | @PostMapping("/enterprise/settlement/generate-excel") |
| 37 | @ResponseStatus(HttpStatus.OK) | 37 | @ResponseStatus(HttpStatus.OK) | ... | ... |
-
Please register or login to post a comment