| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.panzhihua.common.model.vos.sanshuo.ComSanShuoIndustryCenterVO; |
| | | import com.panzhihua.common.model.vos.sanshuo.ExpertRangeVO; |
| | | import com.panzhihua.service_community.entity.ComSanshuoIndustryCenter; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author Frozen |
| | |
| | | public interface ComSanshuoIndustryCenterDao extends BaseMapper<ComSanshuoIndustryCenter> { |
| | | |
| | | IPage<ComSanShuoIndustryCenterVO> pageIndustryCenter(Page page, @Param("keyWord") String keyWord); |
| | | |
| | | /** |
| | | * 获取业务中心id,名称 |
| | | * */ |
| | | List<ExpertRangeVO> indstryList(); |
| | | |
| | | /** |
| | | * 街道id,名称 |
| | | * */ |
| | | List<ExpertRangeVO> streetList(); |
| | | |
| | | /** |
| | | * 社区id,名称 |
| | | * */ |
| | | List<ExpertRangeVO> communityList(); |
| | | } |
| | | |
| | | |