(String id)
| 5 | public interface UserDao { |
| 6 | User selectUser(String id) throws Exception; |
| 7 | int deleteUser(String id) throws Exception; |
| 8 | int insertUser(User user) throws Exception; |
| 9 | int updateUser(User user) throws Exception; |
| 10 | int count() throws Exception; |
no outgoing calls