机构数据:不保留多余的历史申请被驳回的数据
This commit is contained in:
parent
8298b88fa9
commit
db56c2902d
|
@ -51,6 +51,9 @@ public class OrgApplyInfoServiceImpl extends ServiceImpl<OrgApplyInfoMapper, Org
|
|||
baseMapper.updateById(orgApplyInfo);
|
||||
}
|
||||
if ("4".equals(orgApplyInfo.getStatus())) {
|
||||
//先将历史审核不通过的数据删除掉
|
||||
baseMapper.realDelete(orgApplyInfo.getPkId());
|
||||
|
||||
//如果是提交机构变更 需要将对应pkid都改为 modify_status=1 不可提交修改信息
|
||||
QueryWrapper<OrgApplyInfo> qw = new QueryWrapper<>();
|
||||
qw.eq("pk_id", orgApplyInfo.getPkId());
|
||||
|
|
Loading…
Reference in New Issue