|
|
|
|
@ -115,7 +115,16 @@ public class RecorderCompareController extends BladeController { |
|
|
|
|
return R.status(recorderCompareService.deleteLogic(Func.toLongList(ids))); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据设备编号批量新增 |
|
|
|
|
*/ |
|
|
|
|
@PostMapping("/submit-list") |
|
|
|
|
@ApiOperationSupport(order = 8) |
|
|
|
|
@Operation(summary = "根据设备编号批量新增", description = "传入modelPrototype集合和设备编号") |
|
|
|
|
public R submitList(@Valid @RequestBody List<RecorderCompareEntity> recorderCompareEntities, |
|
|
|
|
@Parameter(description = "设备编号", required = true) @RequestParam String code) { |
|
|
|
|
return R.status(recorderCompareService.submitList(recorderCompareEntities, code)); |
|
|
|
|
} |
|
|
|
|
/** |
|
|
|
|
* 导出数据 |
|
|
|
|
*/ |
|
|
|
|
|