|
@@ -47,6 +47,10 @@ public class FIRC0095 extends QCCatalogue {
|
|
Map<String, String> structureMap = inputInfo.getBeHospitalizedDoc().getStructureMap();
|
|
Map<String, String> structureMap = inputInfo.getBeHospitalizedDoc().getStructureMap();
|
|
String age = structureMap.get("年龄");
|
|
String age = structureMap.get("年龄");
|
|
if (StringUtil.isNotBlank(age)) {
|
|
if (StringUtil.isNotBlank(age)) {
|
|
|
|
+ if (age.contains("月") || age.contains("天")) {
|
|
|
|
+ status.set("0");
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
age = age.replaceAll("岁", "");
|
|
age = age.replaceAll("岁", "");
|
|
try {
|
|
try {
|
|
if (Integer.parseInt(age) < 10) {
|
|
if (Integer.parseInt(age) < 10) {
|