郑永安
2023-07-20 66de1a166391376d71a028c2069e90e9c509d499
src/main/java/com/gk/hotwork/Mapper/SafetySelfInspectionMapper.java
@@ -4,6 +4,8 @@
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.gk.hotwork.Domain.SafetySelfInspection;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
import java.util.Map;
@@ -11,6 +13,6 @@
@Repository
public interface SafetySelfInspectionMapper extends BaseMapper<SafetySelfInspection> {
    IPage<SafetySelfInspection> selectPages(Page<SafetySelfInspection> page, Map<String, Object> params);
    IPage<SafetySelfInspection> selectPages(@Param("page") Page<SafetySelfInspection> page,@Param("params") Map<String, Object> params);
}