|
|
|
@ -115,8 +115,8 @@ public class ClassifyController extends BladeController {
|
|
|
|
|
@PostMapping("/remove") |
|
|
|
|
@ApiOperationSupport(order = 7) |
|
|
|
|
@ApiOperation(value = "逻辑删除", notes = "传入ids") |
|
|
|
|
public R remove(@ApiParam(value = "主键集合", required = true) @RequestParam String ids) { |
|
|
|
|
return R.status(classifyService.deleteLogic(Func.toLongList(ids))); |
|
|
|
|
public R remove(@ApiParam(value = "主键集合", required = true) @RequestBody ClassifyDTO classifyDTO) { |
|
|
|
|
return R.status(classifyService.deleteLogic(Func.toLongList(classifyDTO.getIds()))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -192,10 +192,10 @@ public class ClassifyController extends BladeController {
|
|
|
|
|
@PostMapping("/selectParentCalssifyList") |
|
|
|
|
@ApiOperationSupport(order = 5) |
|
|
|
|
@ApiOperation(value = "查询指标分类", notes = "传入indicatorsDTO") |
|
|
|
|
public R selectParentCalssifyList(@RequestBody ClassifyDTO classifyDTO) { |
|
|
|
|
public R selectParentCalssifyList() { |
|
|
|
|
String method = "##############selectParentCalssifyList: "; |
|
|
|
|
log.info(method+"查询指标分类 参数={}",classifyDTO); |
|
|
|
|
|
|
|
|
|
log.info(method+"查询指标分类 "); |
|
|
|
|
ClassifyDTO classifyDTO = new ClassifyDTO(); |
|
|
|
|
try{ |
|
|
|
|
|
|
|
|
|
return classifyService.selectParentCalssifyList(classifyDTO); |
|
|
|
|