YxyUserSetService.java 905 字节
package com.espeed.service;

import java.util.List;

import com.espeed.pojo.YxyUserSet;

/**
 * 程序名称:    	EspeedMail_时速邮箱
 * 程序版本:    	V1.0
 * 作    者:    	深圳市科飞时速网络技术有限公司(0755-88843776)
 * 版权所有:    	深圳市科飞时速网络技术有限公司
 * 技术支持:    	Tech@21gmail.com
 * 单元名称:     用户设置service(营销游)
 * 开始时间:    	2013.12.09
 * 程 序 员:    	谢勇
 * 最后修改:    
 * 备    注:		如需修改请通知程序员    
 */
public interface YxyUserSetService {

	/**添加/编辑用户设置*/
	public void addEditInfo(YxyUserSet o)throws Exception;
	/**查询用户设置信息*/
	public YxyUserSet findUserSet(String loginid,String domain)throws Exception;
	/**编辑过滤字符*/
	public void editFilterString(String filterstring,int setid,String domain,String loginid)throws Exception;
}