MyHelper调整

This commit is contained in:
mzr 2025-10-16 19:40:41 +08:00
parent 80cea4f91e
commit 3a38ee354c
1 changed files with 1 additions and 2 deletions

View File

@ -153,8 +153,7 @@ public class MyHelper {
DefdocVO[] defdocVOs = (DefdocVO[]) new HYSuperDMO().queryByWhereClause(DefdocVO.class, strWhere);
if (defdocVOs != null) {
for (DefdocVO defdocVO : defdocVOs) {
String value = StringUtils.isEmpty(defdocVO.getMemo()) ? defdocVO.getName() : defdocVO.getMemo();
map.put(defdocVO.getCode().trim(), value);
map.put(defdocVO.getCode().trim(), defdocVO.getName());
}
}
} catch (DAOException e) {