guoshilong
2023-05-10 4e97c398243b00e05d8d68e850dcd69c42b0cc76
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.gistack.sm.sjztmd.mapper;
 
import cn.gistack.sm.sjztmd.entity.AttResBase;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
import java.util.Map;
 
/**
 * AttResBaseMapper 接口
 *
 * @author Chill
 */
public interface AttResBaseMapper extends BaseMapper<AttResBase> {
 
 
    List<AttResBase> selectAttResBasePage(IPage<AttResBase> page, @Param("attResBase") AttResBase attResBase);
 
    List<AttResBase> getListByRegion(IPage<AttResBase> page,@Param("obj") Map<String, Object> obj);
 
    AttResBase getDetailByCode(@Param("code") String code);
}