|
@@ -29,8 +29,8 @@ public class ShaoyfOrdinaryAssistant {
|
|
|
if (value.endsWith("A") || value.endsWith("F") || value.endsWith("R")
|
|
|
|| value.endsWith("Y") || value.endsWith("I") || value.endsWith("J")
|
|
|
|| value.endsWith("L") || value.endsWith("b")) {
|
|
|
- value = value.substring(0, value.length() - 1);
|
|
|
- structureMap.put(key, value);
|
|
|
+ structureMap.put(key, value.substring(0, value.length() - 1));
|
|
|
+ structureMap.put(key+"个人职称",value.substring(value.length() - 1));
|
|
|
}
|
|
|
}
|
|
|
|