| | |
| | | |
| | | import java.util.List; |
| | | import com.se.system.domain.SysStatusCtrl; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * 系统状态监控Mapper接口 |
| | |
| | | * @author se |
| | | * @date 2024-12-07 |
| | | */ |
| | | public interface SysStatusCtrlMapper |
| | | { |
| | | @SuppressWarnings("ALL") |
| | | public interface SysStatusCtrlMapper { |
| | | /** |
| | | * 查询系统状态监控 |
| | | * |
| | | * |
| | | * @param statusId 系统状态监控主键 |
| | | * @return 系统状态监控 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询系统状态监控列表 |
| | | * |
| | | * |
| | | * @param sysStatusCtrl 系统状态监控 |
| | | * @return 系统状态监控集合 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 新增系统状态监控 |
| | | * |
| | | * |
| | | * @param sysStatusCtrl 系统状态监控 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改系统状态监控 |
| | | * |
| | | * |
| | | * @param sysStatusCtrl 系统状态监控 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 删除系统状态监控 |
| | | * |
| | | * |
| | | * @param statusId 系统状态监控主键 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除系统状态监控 |
| | | * |
| | | * |
| | | * @param statusIds 需要删除的数据主键集合 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteSysStatusCtrlByStatusIds(Long[] statusIds); |
| | | |
| | | public int updates(@Param("list") List<SysStatusCtrl> list); |
| | | } |