字符串转换

This commit is contained in:
guojunyun
2025-11-14 14:43:15 +08:00
parent 1bcaca0d99
commit a6922e57da

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) { if (systemRelativityDO == null) {
return 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) { if (systemRelativityDO == null) {
return null; return null;
} }