| | |
| | | package com.gkhy.exam.admin.controller.system; |
| | | |
| | | import com.gkhy.exam.common.api.CommonResult; |
| | | import com.gkhy.exam.system.domain.CompanyBasic; |
| | | import com.gkhy.exam.system.domain.CompanyIndustryType; |
| | | import com.gkhy.exam.system.service.SysIndustryTypeService; |
| | | import io.swagger.annotations.Api; |
| | |
| | | * 行业类型列表 |
| | | * @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()); |