| | |
| | | * 行业类型列表 |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "行业类型列表") |
| | | @ApiOperation(value = "行业类型列表分页") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", name = "pageNum", dataType = "int", required = false, value = "当前页,默认1"), |
| | | @ApiImplicitParam(paramType = "query", name = "pageSize", dataType = "int", required = false, value = "每页数目,默认10") |
| | |
| | | return CommonResult.success(service.selectIndustryTypeList()); |
| | | } |
| | | |
| | | @ApiOperation(value = "行业类型列表") |
| | | @GetMapping("/listAll") |
| | | public CommonResult listIndustryTypeAll(){ |
| | | return CommonResult.success(service.selectList()); |