| | |
| | | */ |
| | | package org.springblade.modules.property.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.property.entity.PropertyDistrictUserEntity; |
| | | import org.springblade.modules.property.vo.PropertyDistrictUserVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 物业公司人员派驻小区关联表 服务类 |
| | |
| | | * @author BladeX |
| | | * @since 2023-11-23 |
| | | */ |
| | | public interface IPropertyDistrictUserService extends BaseService<PropertyDistrictUserEntity> { |
| | | public interface IPropertyDistrictUserService extends IService<PropertyDistrictUserEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | */ |
| | | IPage<PropertyDistrictUserVO> selectPropertyDistrictUserPage(IPage<PropertyDistrictUserVO> page, PropertyDistrictUserVO propertyDistrictUser); |
| | | |
| | | List<String> selectPropertyDistrictByUserId(Long userId); |
| | | |
| | | |
| | | } |