1
13693261870
2024-12-11 c6550a4d9bd69e59e9bb6ac6ad740e509edbd215
se-modules/se-system/src/main/java/com/se/system/mapper/SysStatusCtrlMapper.java
@@ -2,6 +2,7 @@
import java.util.List;
import com.se.system.domain.SysStatusCtrl;
import org.apache.ibatis.annotations.Param;
/**
 * 系统状态监控Mapper接口
@@ -9,11 +10,11 @@
 * @author se
 * @date 2024-12-07
 */
public interface SysStatusCtrlMapper
{
@SuppressWarnings("ALL")
public interface SysStatusCtrlMapper {
    /**
     * 查询系统状态监控
     *
     *
     * @param statusId 系统状态监控主键
     * @return 系统状态监控
     */
@@ -21,7 +22,7 @@
    /**
     * 查询系统状态监控列表
     *
     *
     * @param sysStatusCtrl 系统状态监控
     * @return 系统状态监控集合
     */
@@ -29,7 +30,7 @@
    /**
     * 新增系统状态监控
     *
     *
     * @param sysStatusCtrl 系统状态监控
     * @return 结果
     */
@@ -37,7 +38,7 @@
    /**
     * 修改系统状态监控
     *
     *
     * @param sysStatusCtrl 系统状态监控
     * @return 结果
     */
@@ -45,7 +46,7 @@
    /**
     * 删除系统状态监控
     *
     *
     * @param statusId 系统状态监控主键
     * @return 结果
     */
@@ -53,9 +54,11 @@
    /**
     * 批量删除系统状态监控
     *
     *
     * @param statusIds 需要删除的数据主键集合
     * @return 结果
     */
    public int deleteSysStatusCtrlByStatusIds(Long[] statusIds);
    public int updates(@Param("list") List<SysStatusCtrl> list);
}