Commit 6299dad8 authored by hongguangwu's avatar hongguangwu

getBankCity

parent 16b51fdd
......@@ -465,7 +465,12 @@ public class ExcelUtil <T> implements Serializable {
// 简单的获取区域字典value
public static String getRedisAreaValue(String c) {
return String.valueOf(RedisUtil.redis.opsForValue().get(c));
Object value = RedisUtil.redis.opsForValue().get(c);
if (value != null) {
return String.valueOf(value);
} else {
return null;
}
}
private String getDicValue(String c, String tempStr, ExcelAttribute attr,Integer rowNum, ErrorMessage errorTemp) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment