dao接口:
`package com.liyan.dao;
import com.liyan.domain.Account;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Select;
import java.util.List;
public interface IAccountDao {
@Select(“select * from account”)
List findAll();
@Insert("insert into account(name,money)values(#{name},#{money})")
void save(Account account);
}
`