d75baa5ef5f3234becd81994f043892129dda414.svn-base
1.2 KB
package com.espeed.service;
import java.util.List;
import com.espeed.pojo.YxySendFilter;
import com.espeed.pojo.YxySendFilterAddress;
import com.espeed.vo.PageBean;
/**
* 程序名称: EspeedMail_时速邮箱
* 程序版本: V1.0
* 作 者: 深圳市科飞时速网络技术有限公司(0755-88843776)
* 版权所有: 深圳市科飞时速网络技术有限公司
* 技术支持: Tech@21gmail.com
* 单元名称: 发送过滤分组Service接口
* 开始时间: 2013.12.09
* 程 序 员: 谢勇
* 最后修改:
* 备 注: 如需修改请通知程序员
*/
public interface YxySendFilterService {
/**查询发送过滤分组所有类别*/
public List<YxySendFilter> findUserFilter(String loginid,String domain)throws Exception;
/**添加编辑过滤分组类别*/
public void addEditFilter(YxySendFilter o)throws Exception;
/**删除过滤分组*/
public void delFilter(String loginid,String domain,int filterid,int operation)throws Exception;
/**清空过滤分组*/
public void delFilterData(int filterid)throws Exception;
/**过滤分组是否存在*/
public int findisExits(String name,String loginid,String domain)throws Exception;
}