/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package ibatis.dao; import ibatis.Account; import java.util.List; /** * * @author lane */ public interface AccountDAO { public List getAll(); public Account getById(String id); }