| | |
| | | import springfox.documentation.annotations.ApiIgnore; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.servlet.http.HttpServletRequest; |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | @GetMapping("exportData") |
| | | @ApiOperation("导出产品模型") |
| | | @LogOperation("导出产品模型") |
| | | public Result exportDataExcel(Long shipId) { |
| | | xhProductModelService.exportDataExcel(shipId); |
| | | public Result exportDataExcel(HttpServletRequest request, HttpServletResponse response, Long shipId,String fileName) { |
| | | xhProductModelService.exportDataExcel(request,response,shipId,fileName); |
| | | |
| | | return null; |
| | | } |