|
|
|
@ -19,8 +19,8 @@ import java.util.Objects;
|
|
|
|
|
@Slf4j |
|
|
|
|
@RestController |
|
|
|
|
@AllArgsConstructor |
|
|
|
|
@RequestMapping("/classify") |
|
|
|
|
@Api(value = "分类指标表", tags = "指标接口") |
|
|
|
|
@RequestMapping("/indicators") |
|
|
|
|
@Api(value = "考核表", tags = "考核接口") |
|
|
|
|
public class IndicatorsController { |
|
|
|
|
|
|
|
|
|
private final IIndicatorsService indicatorsService; |
|
|
|
@ -92,4 +92,29 @@ public class IndicatorsController {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("/removeById") |
|
|
|
|
@ApiOperationSupport(order = 5) |
|
|
|
|
@ApiOperation(value = "删除考核", notes = "传入indicatorsDTO") |
|
|
|
|
public R removeById(@RequestBody IndicatorsDTO indicatorsDTO) { |
|
|
|
|
String method = "##############removeById: "; |
|
|
|
|
log.info(method+"更新指标 参数={}",indicatorsDTO); |
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
Long id = indicatorsDTO.getId(); |
|
|
|
|
if(Objects.isNull(id)){ |
|
|
|
|
log.warn(method+"指标id为空 id={}",id); |
|
|
|
|
return R.fail(405,"指标id为空"); |
|
|
|
|
} |
|
|
|
|
indicatorsService.deleteById(id); |
|
|
|
|
return R.success("删除成功"); |
|
|
|
|
}catch (CustomerException e){ |
|
|
|
|
log.error(e.message,e); |
|
|
|
|
return R.fail(e.code,e.message); |
|
|
|
|
}catch (Exception e){ |
|
|
|
|
log.error(method+"系统异常",e); |
|
|
|
|
return R.fail(500,"系统异常"); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|