Msg
郑永安
2023-08-18 5e7be1e46d5d1787519189f23fb60bdeb775a7e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.gk.hotwork.Mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
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;
 
@Repository
public interface SafetySelfInspectionMapper extends BaseMapper<SafetySelfInspection> {
 
    IPage<SafetySelfInspection> selectPages(@Param("page") Page<SafetySelfInspection> page,@Param("params") Map<String, Object> params);
 
 
}