|
@@ -45,7 +45,7 @@ public class THR02150 extends QCCatalogue {
|
|
|
if (StringUtil.isNotBlank(doctorName)) {
|
|
|
Map<String, String> doctor = (Map) surgeon.get(doctorName);
|
|
|
if (doctor == null) {
|
|
|
- doctorName = doctorName.replaceAll("[a-z|A-Z]*$", ""); // 将字母结尾的替换成""
|
|
|
+ doctorName = doctorName.replaceAll("[a-z|A-Z]$", ""); // 将字母结尾的替换成""
|
|
|
doctor = (Map) surgeon.get(doctorName);
|
|
|
}
|
|
|
String occup = doctor.get("occup");
|