|
|
@@ -66,7 +66,8 @@ public class BugListServiceImpl implements BugListService {
|
|
|
.projectId(vo.getProjectId())
|
|
|
.processorId(vo.getProcessorId())
|
|
|
.build();
|
|
|
- int bugId = bugListMapper.insert(po);
|
|
|
+ bugListMapper.insert(po);
|
|
|
+ int bugId = bugListMapper.selectMaxId();
|
|
|
|
|
|
//ANA 日志需要打出新建的bugInfo信息
|
|
|
// try{
|
|
|
@@ -86,7 +87,6 @@ public class BugListServiceImpl implements BugListService {
|
|
|
//
|
|
|
// }catch (Exception e){}
|
|
|
try{
|
|
|
- BugListPO bugPo = bugListMapper.selectById(bugId);
|
|
|
JSONObject object = new JSONObject();
|
|
|
// object.put("bug_id",123);
|
|
|
object.put("bug_id",bugId);
|