admin
2024-01-23 81da61b828e29b7745e1382dfbbaeb685dc083ef
fanli/src/main/java/com/yeshi/fanli/service/inter/user/UserConvertLinkTemplateService.java
@@ -1,58 +1,58 @@
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;
}
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;
}