|
|
@ -620,7 +620,7 @@ public class IcResiUserImportServiceImpl implements IcResiUserImportService, Res |
|
|
|
Boolean isMale = (Integer.parseInt(sex) % 2) == 1; |
|
|
|
columnAndValues.put("BIRTHDAY", String.join("-", Arrays.asList(year, month,day))); |
|
|
|
columnAndValues.put("GENDER", isMale ? "1" : "2"); |
|
|
|
columnAndValues.put("IS_OLD_PEOPLE", age > 60 ? "1" : "0"); |
|
|
|
columnAndValues.put("IS_OLD_PEOPLE", age >= 60 ? "1" : "0"); |
|
|
|
System.out.println(6); |
|
|
|
} |
|
|
|
|
|
|
|