1
13693261870
2024-12-07 8243c95cda7adb78382dfcf58588c8a49d1ff044
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.mapper;
 
import java.util.List;
import com.se.system.domain.SysStatusCtrl;
 
/**
 * 系统状态监控Mapper接口
 * 
 * @author se
 * @date 2024-12-07
 */
public interface SysStatusCtrlMapper 
{
    /**
     * 查询系统状态监控
     * 
     * @param statusId 系统状态监控主键
     * @return 系统状态监控
     */
    public SysStatusCtrl selectSysStatusCtrlByStatusId(Long statusId);
 
    /**
     * 查询系统状态监控列表
     * 
     * @param sysStatusCtrl 系统状态监控
     * @return 系统状态监控集合
     */
    public List<SysStatusCtrl> selectSysStatusCtrlList(SysStatusCtrl sysStatusCtrl);
 
    /**
     * 新增系统状态监控
     * 
     * @param sysStatusCtrl 系统状态监控
     * @return 结果
     */
    public int insertSysStatusCtrl(SysStatusCtrl sysStatusCtrl);
 
    /**
     * 修改系统状态监控
     * 
     * @param sysStatusCtrl 系统状态监控
     * @return 结果
     */
    public int updateSysStatusCtrl(SysStatusCtrl sysStatusCtrl);
 
    /**
     * 删除系统状态监控
     * 
     * @param statusId 系统状态监控主键
     * @return 结果
     */
    public int deleteSysStatusCtrlByStatusId(Long statusId);
 
    /**
     * 批量删除系统状态监控
     * 
     * @param statusIds 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteSysStatusCtrlByStatusIds(Long[] statusIds);
}