| | |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import java.io.IOException; |
| | | |
| | | @RequestMapping("excel") |
| | |
| | | |
| | | @GetMapping("dcReport") |
| | | @ApiOperation(value = "直流报表") |
| | | public void dcReport(int battGroupId,int testRecordCount) throws IOException { |
| | | service.dcReport(battGroupId,testRecordCount); |
| | | public void dcReport(int battGroupId, int testRecordCount, HttpServletResponse response) throws IOException { |
| | | service.dcReport(battGroupId,testRecordCount,response); |
| | | } |
| | | |
| | | |