| | |
| | | |
| | | import com.gkhy.exam.common.annotation.RepeatSubmit; |
| | | import com.gkhy.exam.common.api.CommonResult; |
| | | import com.gkhy.exam.system.domain.*; |
| | | import com.gkhy.exam.system.domain.QualitySystemPlan; |
| | | import com.gkhy.exam.system.domain.StandardizedQuality; |
| | | import com.gkhy.exam.system.domain.StandardizedTemplate; |
| | | import com.gkhy.exam.system.service.QualitySystemPlanService; |
| | | import com.gkhy.exam.system.service.StandardizedTemplateService; |
| | | import io.swagger.annotations.Api; |
| | |
| | | |
| | | /** |
| | | * 企业花名册修改 |
| | | * @param id |
| | | * @return |
| | | */ |
| | | @ApiOperation(value = "标准化模版置顶") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(paramType = "query", name = "id", dataType = "int", required = true, value = "数据id"), |
| | | }) |
| | | @GetMapping("/standardizedTemplate/top") |
| | | public CommonResult topCompanyIndustryTemplate(Integer id){ |
| | | return standardizedTemplateService.topStandardizedTemplate(id); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 企业花名册修改 |
| | | * @param standardizedTemplate |
| | | * @return |
| | | */ |