Skip to content

Commit

Permalink
修复反射方法参数@value注解使用过高api而不能向下兼容问题
Browse files Browse the repository at this point in the history
  • Loading branch information
陈浪 committed May 31, 2020
1 parent 240c754 commit 1df0185
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/src/main/java/com/ellen/dhcsqlite/NewActivtiy.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ public void onCreateTableSuccess(String tableName, String createSQL) {
studentList.add(student);
}
studentTable.saveData(studentList);

//通过代理接口调用
studentTable.getAutoDesignOperate().update1("新的名字","Ellen2018_0");

for (Student student1 : studentTable.getAllData()) {
Log.e("Ellen2018", "数据:" + student1.toString());
}
Expand Down

0 comments on commit 1df0185

Please sign in to comment.