|
|
@ -1924,7 +1924,8 @@ public class CustomerFormServiceImpl implements CustomerFormService { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public static Map<String, String> convert(String str) { |
|
|
public static Map<String, String> convert(String str) { |
|
|
String[] parts = str.split("_"); |
|
|
//String[] parts = str.split("_");
|
|
|
|
|
|
String[] parts = str.split("(?<!table)_"); |
|
|
if (parts.length == 3) { |
|
|
if (parts.length == 3) { |
|
|
Map<String, String> map = new HashMap<>(); |
|
|
Map<String, String> map = new HashMap<>(); |
|
|
map.put("id", parts[0]); |
|
|
map.put("id", parts[0]); |
|
|
|