package com.ruoyi.system.service;
|
|
import java.util.List;
|
import com.ruoyi.system.domain.SysSauthAccount;
|
|
/**
|
* 授权地址Service接口
|
*
|
* @author Ling9
|
* @date 2023-07-22
|
*/
|
public interface ISysSauthAccountService
|
{
|
/**
|
* 查询授权地址
|
*
|
* @param id 授权地址主键
|
* @return 授权地址
|
*/
|
public SysSauthAccount selectSysSauthAccountById(Long id);
|
|
/**
|
* 查询授权地址列表
|
*
|
* @param sysSauthAccount 授权地址
|
* @return 授权地址集合
|
*/
|
public List<SysSauthAccount> selectSysSauthAccountList(SysSauthAccount sysSauthAccount);
|
|
/**
|
* 新增授权地址
|
*
|
* @param sysSauthAccount 授权地址
|
* @return 结果
|
*/
|
public int insertSysSauthAccount(SysSauthAccount sysSauthAccount);
|
|
/**
|
* 修改授权地址
|
*
|
* @param sysSauthAccount 授权地址
|
* @return 结果
|
*/
|
public int updateSysSauthAccount(SysSauthAccount sysSauthAccount);
|
|
/**
|
* 批量删除授权地址
|
*
|
* @param ids 需要删除的授权地址主键集合
|
* @return 结果
|
*/
|
public int deleteSysSauthAccountByIds(String ids);
|
|
/**
|
* 删除授权地址信息
|
*
|
* @param id 授权地址主键
|
* @return 结果
|
*/
|
public int deleteSysSauthAccountById(Long id);
|
}
|