Commit a4262585 authored by yanzg's avatar yanzg

身份证识别

parent 427bf22b
......@@ -74,12 +74,13 @@ public abstract class BaseDaoSql {
this.db = db;
}
public <T> void initList(Collection<T> list) {
public <T> Collection<T> initList(Collection<T> list) {
for (T item : list) {
if (item instanceof InitDao) {
((InitDao) item).init();
}
}
return list;
}
/**
......
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