Commit 1d1c8edd by 陶光胜

回写修改

parent 73ef06ec
......@@ -116,9 +116,9 @@ public class StoreSelectBackImpl implements ScreenBackStrategy {
stringBuilder.append(" ").append(ComputeBackUtil.getComputeBack(compute));
for(StoreDictDTO dictDTO : list){
for(String v : valueArr){
if(dictDTO.getKey().equals(v)){
if(dictDTO.getValue().equals(v)){
stringBuilder.append(" 【");
stringBuilder.append(dictDTO.getValue()).append("】 ");
stringBuilder.append(dictDTO.getKey()).append("】 ");
}
}
}
......@@ -138,9 +138,9 @@ public class StoreSelectBackImpl implements ScreenBackStrategy {
stringBuilder.append(" ").append(ComputeBackUtil.getComputeBack(compute));
for(StoreDictDTO dictDTO : list){
for(String v : valueArr){
if(dictDTO.getKey().equals(v)){
if(dictDTO.getValue().equals(v)){
stringBuilder.append(" 【");
stringBuilder.append(dictDTO.getValue()).append("】 ");
stringBuilder.append(dictDTO.getKey()).append("】 ");
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment