| | |
| | | */ |
| | | package org.springblade.modules.property.mapper; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springblade.modules.property.entity.PropertyCompanyEntity; |
| | | import org.springblade.modules.property.vo.PropertyCompanyVO; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | |
| | | * @param propertyCompany |
| | | * @return |
| | | */ |
| | | List<PropertyCompanyVO> selectPropertyCompanyPage(IPage page, PropertyCompanyVO propertyCompany); |
| | | List<PropertyCompanyVO> selectPropertyCompanyPage(IPage page, |
| | | @Param("propertyCompany") PropertyCompanyVO propertyCompany); |
| | | |
| | | |
| | | /** |
| | | * 物业公司列表查询(不分页) |
| | | * @param propertyCompany |
| | | * @return |
| | | */ |
| | | List<PropertyCompanyVO> getPropertyCompanyList(@Param("propertyCompany") PropertyCompanyVO propertyCompany); |
| | | } |