| | |
| | | */ |
| | | package org.springblade.modules.property.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.property.entity.PropertyCompanyDistrictEntity; |
| | | import org.springblade.modules.property.vo.PropertyCompanyDistrictVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | |
| | | * @author BladeX |
| | | * @since 2023-11-23 |
| | | */ |
| | | public interface IPropertyCompanyDistrictService extends BaseService<PropertyCompanyDistrictEntity> { |
| | | public interface IPropertyCompanyDistrictService extends IService<PropertyCompanyDistrictEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | IPage<PropertyCompanyDistrictVO> selectPropertyCompanyDistrictPage(IPage<PropertyCompanyDistrictVO> page, PropertyCompanyDistrictVO propertyCompanyDistrict); |
| | | |
| | | |
| | | /** |
| | | * 物业派驻小区表 自定义新增或修改 |
| | | * @param propertyCompanyDistrict |
| | | * @return |
| | | */ |
| | | boolean saveOrUpdatePropertyCompanyDistrict(PropertyCompanyDistrictEntity propertyCompanyDistrict); |
| | | } |