Skip to content

Commit 68a609e

Browse files
committed
Fix the error in the example code
1 parent 9e7f60c commit 68a609e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Define a DAO interface:
2929
@Dao(config = AppConfig.class)
3030
public interface EmployeeDao {
3131
@Select
32-
List<Employee> selectAll();
32+
Employee selectById(Integer id);
3333
@Update
3434
int update(Employee employee);
3535
}

0 commit comments

Comments
 (0)