123456789101112131415161718192021222324 |
- package com.example.civilizedcity.mapper;
-
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- import com.example.civilizedcity.entity.TaCheckItem;
-
- import java.util.List;
-
- /**
- * 测评点位;(ta_check_item)表数据库访问层
- * @author : http://njyunzhi.com
- * @date : 2022-12-13
- */
- @Mapper
- public interface TaCheckItemMapper extends BaseMapper<TaCheckItem>{
-
- IPage<TaCheckItem> getPageBy(IPage<TaCheckItem> pg, @Param("checkId") String checkId, @Param("itemType") String itemType);
-
- int createNewLocItems(@Param("checkId") String checkId);
-
- List<TaCheckItem> getListBy(@Param("checkId") String checkId, @Param("itemType") String itemType);
- }
|