| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.railway.business.bi.mapper;
- import com.github.pagehelper.Page;
- import com.railway.business.bi.domain.ShowGsd;
- import com.railway.business.bi.domain.vo.GsdQuery;
- import com.railway.business.bi.domain.vo.QuarterTotalVO;
- 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 ShowGsdMapper {
- /**
- * 新增
- */
- int insert(ShowGsd showGsd);
- /**
- * 删除
- */
- int delete(@Param("id") String id);
- /**
- * 更新
- */
- int update(ShowGsd showGsd);
- /**
- * 获取单个
- */
- ShowGsd getInfo(@Param("id") String id);
- /**
- * 查询列表
- */
- Page<ShowGsd> getList(GsdQuery query);
- QuarterTotalVO getGsdTotal();
- }
|