1
13693261870
2024-11-22 43723e71b743d90283b30cd71471101fe01ac49b
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.se.system.service.inte;
 
import java.util.List;
import com.se.system.domain.SysSoft;
 
/**
 * 软件Service接口
 * 
 * @author se
 * @date 2024-11-22
 */
public interface ISysSoftService 
{
    /**
     * 查询软件
     * 
     * @param softId 软件主键
     * @return 软件
     */
    public SysSoft selectSysSoftBySoftId(Long softId);
 
    /**
     * 查询软件列表
     * 
     * @param sysSoft 软件
     * @return 软件集合
     */
    public List<SysSoft> selectSysSoftList(SysSoft sysSoft);
 
    /**
     * 新增软件
     * 
     * @param sysSoft 软件
     * @return 结果
     */
    public int insertSysSoft(SysSoft sysSoft);
 
    /**
     * 修改软件
     * 
     * @param sysSoft 软件
     * @return 结果
     */
    public int updateSysSoft(SysSoft sysSoft);
 
    /**
     * 批量删除软件
     * 
     * @param softIds 需要删除的软件主键集合
     * @return 结果
     */
    public int deleteSysSoftBySoftIds(Long[] softIds);
 
    /**
     * 删除软件信息
     * 
     * @param softId 软件主键
     * @return 结果
     */
    public int deleteSysSoftBySoftId(Long softId);
}