huliguo
2 天以前 5d7b65670282a4fad015e37d567cfa171b162052
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ruoyi.errand.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.ruoyi.common.core.domain.R;
import com.ruoyi.errand.domain.Community;
import com.ruoyi.errand.object.dto.sys.CommunityPageListDTO;
import com.ruoyi.errand.object.vo.app.CommunityListVO;
import com.ruoyi.errand.object.vo.sys.AllCommunityListVO;
import com.ruoyi.errand.object.vo.sys.CommunityPageListVO;
import com.ruoyi.errand.object.vo.sys.CourierPageListVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
@Mapper
public interface CommunityMapper extends BaseMapper<Community> {
    List<CommunityListVO> selectListByRegionId(@Param("regionId") Integer regionId);
 
    List<CommunityListVO> getTotalCommunityList();
 
    List<AllCommunityListVO> getAllCommunityList(@Param("list")List<Integer> list);
 
    IPage<CommunityPageListVO> getCommunityPageList(@Param("page")IPage<CommunityPageListVO> page, @Param("dto")CommunityPageListDTO dto);
}