AccountDao.java 176 B

1234567891011
  1. package yike.example.dao;
  2. import yike.example.obj.Account;
  3. public interface AccountDao {
  4. Account selectByPrimaryKey(Long id);
  5. void updateAccountInfo(Account account);
  6. }