| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package com.railway.business.bi.mapper;
- import com.github.pagehelper.Page;
- import com.railway.business.bi.domain.ShowYdts;
- import com.railway.business.bi.domain.vo.YdtsQuery;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- /**
- * 大屏展示-远动调试
- * @author ZhaoMn
- * @date 2023/01/30
- */
- @Mapper
- @Repository
- public interface ShowYdtsMapper {
- /**
- * 新增
- */
- int insert(ShowYdts showYdts);
- /**
- * 删除
- */
- int delete(@Param("id") String id);
- /**
- * 更新
- */
- int update(ShowYdts showYdts);
- /**
- * 获取单个
- */
- ShowYdts getInfo(@Param("id") String id);
- /**
- * 查询列表
- */
- Page<ShowYdts> getList(YdtsQuery query);
- }
|