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

This commit is contained in:
SUNJIABIN
2023-03-09 14:13:58 +08:00
parent d5e45e8ef4
commit d6f41b63a8
@@ -221,6 +221,16 @@ public class SarBussionessStandController extends BaseController<SarBussionessSt
SarBussionessStand result = sarBussionessStandEOService.selectStandardsInfoUpdateByKey(id);
String collectId = personCollectEOService.queryCollectByUserAndId(id);
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);
}