www.pudn.com > workspace.rar > StoreDAO.java


package dao; 
 
public interface StoreDAO {	 
	public boolean insertShopUser(ShopUserTO userTO); 
	public boolean updateShopUser(ShopUserTO userTO); 
	public ShopUserTO selectShopUser(String username); 
	public boolean deleteShopUser(String username); 
}