fe84f60735661517940735b0dbf58a308f976773.svn-base 531 字节
package yxy.timer.service;

import java.util.List;

import yxy.timer.pojo.YxyUserSet;

/**
 * 用户地址service
 */
public interface YxyAddressService {

	/**查询所有用户设置信息*/
	public List<YxyUserSet> findAllSet()throws Exception;
	
	/**删除7天前的地址*/
	public void delAddress(String timer)throws Exception;
	
	/**根据用户与域名删除*/
	public void delAddressByUser(String timer,String loginid,String domain)throws Exception;
	
	/**删除待发地址*/
	public void delDetail()throws Exception;
}