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 getList(YdtsQuery query); }