fix: PDM 497接口访问成功没有返回BUG

This commit is contained in:
2024-05-07 16:46:02 +08:00
parent 5a80b32b39
commit acc60c3fd2
@@ -60,9 +60,7 @@ public class LawsBindPartController {
@ApiOperation(value="绑定零部件-是否显示使用绑定关系", notes="绑定零部件-是否显示使用绑定关系")
@GetMapping(value = "/isShowUseBindRelation")
public Result<?> isShowUseBindRelation(LawsBindPart lawsBindPart) {
LawsBindPart showUseBindRelation = lawsBindPartService.isShowUseBindRelation(lawsBindPart);
return Result.OK();
return Result.OK(lawsBindPartService.isShowUseBindRelation(lawsBindPart));
}
@AutoLog(value = "绑定零部件-使用绑定关系")