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{ IPage getPageBy(IPage pg, @Param("checkId") String checkId, @Param("itemType") String itemType); int createNewLocItems(@Param("checkId") String checkId); List getListBy(@Param("checkId") String checkId, @Param("itemType") String itemType); }