| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package com.railway.business.bi.mapper;
- import com.github.pagehelper.Page;
- import com.railway.business.bi.domain.ShowTestPlanDt;
- import com.railway.business.bi.domain.vo.TestPlanDtQuery;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- /**
- * 大屏展示-试验计划兑现情况-单体
- *
- * @author ZhaoMn
- * @date 2023/02/09
- */
- @Mapper
- @Repository
- public interface ShowTestPlanDtMapper {
- /**
- * 新增
- */
- int insert(ShowTestPlanDt showTestPlanDt);
- /**
- * 删除
- */
- int delete(@Param("id") String id);
- /**
- * 更新
- */
- int update(ShowTestPlanDt showTestPlanDt);
- /**
- * 获取单个
- */
- ShowTestPlanDt getInfo(@Param("id") String id);
- /**
- * 查询列表
- */
- Page<ShowTestPlanDt> getList(TestPlanDtQuery query);
- }
|