| | |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "Authorization", value = "用户token(Bearer +token)", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9....."), |
| | | @ApiImplicitParam(name = "time", value = "2000-01-01 - 2000-11-11", required = false, dataType = "String"), |
| | | @ApiImplicitParam(name = "id", value = "卡车公司id", required = true, dataType = "String"), |
| | | }) |
| | | @GetMapping(value = "/index") |
| | | @ResponseBody |
| | | public Object list(String time) { |
| | | IndexInfo vo = orderService.indexList(time); |
| | | public Object list(String time,int id) { |
| | | IndexInfo vo = orderService.indexList(time,id); |
| | | return new SuccessTip(vo); |
| | | } |
| | | |