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


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