| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.railway.business.bi.mapper;
- import com.github.pagehelper.Page;
- import com.railway.business.bi.domain.ShowBdyc;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- /**
- * 大屏展示-变电异常信息详情表 row_format =
- *
- * @author author
- * @date 2023/01/30
- */
- @Mapper
- @Repository
- public interface ShowBdycMapper {
- /**
- * 新增
- */
- int insert(ShowBdyc showBdyc);
- /**
- * 删除
- */
- int delete(@Param("id") String id);
- /**
- * 更新
- */
- int update(ShowBdyc showBdyc);
- /**
- * 获取单个
- */
- ShowBdyc getInfo(@Param("id") String id);
- /**
- * 查询列表
- */
- Page<ShowBdyc> getList(ShowBdyc showBdyc);
- }
|