YxySmtpSuffixSetService.java 689 字节
package com.espeed.service;

import java.util.List;

import com.espeed.pojo.YxySmtpSuffixSet;

/***
 * 
 * @author xieyong
 * 后缀service接口
 */
public interface YxySmtpSuffixSetService {

	/**查询后缀信息*/
	public List<YxySmtpSuffixSet> findAllSmtpSuffixSet()throws Exception;
	
	/**模糊查询SMTP后缀配置信息*/
	public List<YxySmtpSuffixSet> findSuffixLike(String value)throws Exception;
	
	/**添加后缀信息*/
	public void addSuffixInfo(YxySmtpSuffixSet o)throws Exception;
	
	/**判断后缀是否存在*/
	public List<YxySmtpSuffixSet> findSuffixByValue(String value)throws Exception;
	
	/**删除后缀*/
	public void delSuffixByid(int id)throws Exception;
}