Merge branch 'test-training2' of https://git.code.tencent.com/lian-cbtc/rtss-server into test-training2-xzb1

This commit is contained in:
xzb 2022-10-08 11:10:04 +08:00
commit c915b0605e

View File

@ -127,8 +127,8 @@ public class OrgProjectService implements IOrgProjectService {
@Transactional(rollbackFor = Exception.class)
public void update(Long orgId, List<String> projectList, AccountVO user) {
OrgProjectExample orgProjectExample = new OrgProjectExample();
orgProjectExample.createCriteria().andOrgIdEqualTo(orgId);
if (CollectionUtils.isEmpty(projectList)) { // 为空直接删除项目列表
orgProjectExample.createCriteria().andOrgIdEqualTo(orgId);
orgProjectDao.deleteByExampleSelective(orgProjectExample);
} else {
List<OrgProject> orgProjects = orgProjectDao.selectByExample(orgProjectExample);