zj
2025-05-06 0a5de93f4212f260ddc65c9317632429e828c7dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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);
}