feat(移动破): 不需要了

This commit is contained in:
曹鹏飞 2024-05-27 16:04:34 +08:00
parent 91a12a291c
commit 540d82b620
1 changed files with 2 additions and 4 deletions

View File

@ -523,11 +523,9 @@ public class OptionalEbomApi extends BaseApi {
@GetMapping("syncMaterailInfo")
@ApiOperation("从主物料表同步信息")
@LogRecord(success = "从主物料表同步信息,操作结果:{{#_ret}}", bizNo = "", extra = "{{#rowId}}", type = "移动破-从主物料表同步信息")
public ResultVO<OptionalEbomConfigAggregVO> syncMaterailInfo(@Valid @RequestParam("rowId") @NotNull Long rowId) {
public ResultVO<Void> syncMaterailInfo(@Valid @RequestParam("rowId") @NotNull Long rowId) {
optionalEbomMainService.syncMaterailInfo(rowId);
OptionalEbomImportChildQuery query = new OptionalEbomImportChildQuery();
query.setRootRowId(rowId);
return ResultVO.success(aggregOptionConfigService.ebomEditTree(query));
return ResultVO.success();
}