Browse Source

fix:品号执行人create增加返参

master
xieps 1 year ago
parent
commit
50eb67caba
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/service/executor/ItemExecutorCreateEAIService.java

+ 2
- 1
demo-athenaopt_backend/develop/src/main/java/com/digiwin/athena/app/service/executor/ItemExecutorCreateEAIService.java View File

@ -1,6 +1,7 @@
package com.digiwin.athena.app.service.executor;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.digiwin.app.container.exceptions.DWBusinessException;
import com.digiwin.app.service.DWEAIResult;
@ -62,7 +63,7 @@ public class ItemExecutorCreateEAIService extends AbsEAIService {
//进行批量新增
itemExecutorService.saveBatch(itemExecutorInfo);
return EAIUtil.buildEAIResult(new HashMap<>());
return EAIUtil.buildEAIResult(new JSONObject().fluentPut("item_executor_info",itemExecutorInfo));
}


Loading…
Cancel
Save