Merge branch 'hjb' of SH-Arbitrate/Arbitrate-Backend into dev

This commit was merged in pull request #214.
This commit is contained in:
2023-11-16 14:35:45 +08:00
committed by Gitea
2 changed files with 13 additions and 8 deletions
@@ -304,8 +304,8 @@ public class DeptIdentifyServiceImpl implements IDeptIdentifyService {
return AjaxResult.error("信息重复");
}
deptIdentify.setIdentifyStatus(0); //设置认证状态默认为未认证
deptIdentify.setIsUse(0); //设置认证状态默认为未认证
int i = deptIdentifyMapper.insertDeptIdentify(deptIdentify);//设置机构默认为未启用
deptIdentify.setIsUse(0); //设置机构默认为未启用
int i = deptIdentifyMapper.insertDeptIdentify(deptIdentify);
if (i > 0) {
return AjaxResult.success("新增成功");
}