package com.yeshi.fanli.service.inter.user;
|
|
import java.util.List;
|
|
import com.yeshi.fanli.entity.bus.user.UserConvertLinkTemplate;
|
|
/**
|
* 用户文案转链模板服务
|
* @author Administrator
|
*
|
*/
|
public interface UserConvertLinkTemplateService {
|
|
/**
|
*
|
* @Title: listByUid
|
* @Description: 根据用户ID检索
|
* @param uid
|
* @return
|
* List<UserConvertLinkTemplate> 返回类型
|
* @throws
|
*/
|
public List<UserConvertLinkTemplate> listByUid(Long uid);
|
|
/**
|
*
|
* @Title: updateTemplate
|
* @Description: 更新模板
|
* @param template
|
* void 返回类型
|
* @throws
|
*/
|
public void updateTemplate(UserConvertLinkTemplate template) throws Exception;
|
|
/**
|
*
|
* @Title: deleteConvertLinkTemplate
|
* @Description: 删除模板
|
* @param id
|
* @param uid
|
* @throws Exception
|
* void 返回类型
|
* @throws
|
*/
|
public void deleteConvertLinkTemplate(String id, Long uid) throws Exception;
|
|
/**
|
*
|
* @Title: addConvertLinkTemplate
|
* @Description: 添加模板
|
* @param template
|
* @throws Exception
|
* void 返回类型
|
* @throws
|
*/
|
public void addConvertLinkTemplate(UserConvertLinkTemplate template) throws Exception;
|
|
}
|