|
@@ -29,10 +29,13 @@ import com.google.common.collect.Maps;
|
|
|
import org.apache.commons.collections4.MapUtils;
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
-import java.util.*;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.Iterator;
|
|
|
+import java.util.List;
|
|
|
+import java.util.ListIterator;
|
|
|
+import java.util.Map;
|
|
|
import java.util.regex.Matcher;
|
|
|
import java.util.regex.Pattern;
|
|
|
-import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* @author wangfeng
|
|
@@ -144,7 +147,7 @@ public class KlRegularConfigFacade extends KlRegularConfigServiceImpl {
|
|
|
if (data.getType().equals(RegularConfigEnum.lis.getKey())) {
|
|
|
if (!data.getValue().equals("")) {
|
|
|
Lis lis = new Lis();
|
|
|
- lis.setUniqueName(data.getKey());
|
|
|
+ lis.setUniqueName(data.getStandName());
|
|
|
lis.setDetailName(data.getKey());
|
|
|
lis.setName(data.getKey());
|
|
|
lis.setValue(Double.valueOf(data.getValue()));
|