Merge remote-tracking branch 'origin/dev' into test

This commit is contained in:
qianshijiang
2025-11-14 14:54:23 +08:00
4 changed files with 20 additions and 16 deletions

View File

@@ -640,7 +640,7 @@ public class ContractServiceImpl implements ContractService {
}
// 查询关联表
SystemRelativityDO systemRelativityDO = systemRelativityMapper.selectOne(TableFieldConstants.BSE_SYS_REL_DOWN_ID, id);
SystemRelativityDO systemRelativityDO = systemRelativityMapper.selectOne(TableFieldConstants.BSE_SYS_REL_DOWN_ID, id.toString());
if (systemRelativityDO == null) {
return null;
}
@@ -666,7 +666,7 @@ public class ContractServiceImpl implements ContractService {
}
// 查询关联表
SystemRelativityDO systemRelativityDO = systemRelativityMapper.selectOne(TableFieldConstants.BSE_SYS_REL_UP_ID, id);
SystemRelativityDO systemRelativityDO = systemRelativityMapper.selectOne(TableFieldConstants.BSE_SYS_REL_UP_ID, id.toString());
if (systemRelativityDO == null) {
return null;
}