合并分支 'fix_foton_20230308' 到 'master'

企标技术标准历史版本文件问题

查看合并请求 laws-foton-slrs/foton-slrs-system-rest!24
This commit is contained in:
高嵩
2023-03-09 17:11:46 +08:00
@@ -221,6 +221,16 @@ public class SarBussionessStandController extends BaseController<SarBussionessSt
SarBussionessStand result = sarBussionessStandEOService.selectStandardsInfoUpdateByKey(id); SarBussionessStand result = sarBussionessStandEOService.selectStandardsInfoUpdateByKey(id);
String collectId = personCollectEOService.queryCollectByUserAndId(id); String collectId = personCollectEOService.queryCollectByUserAndId(id);
result.setCollectId(collectId); result.setCollectId(collectId);
Object fbgbuss = result.getAttrInfoMap().get("FBGBUSS");
Object fbgbussName = result.getAttrInfoMap().get("FBGBUSSName");
if(fbgbuss != null ){
result.getAttrInfoMap().put("LSBBBUSS",fbgbuss.toString());
result.getAttrInfoMap().put("FBGBUSS",null);
}
if(fbgbussName != null ){
result.getAttrInfoMap().put("LSBBBUSSName",fbgbussName.toString());
result.getAttrInfoMap().put("FBGBUSSName",null);
}
return Result.success(result); return Result.success(result);
} }