| | |
| | | package org.sxkj.fw.area.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import org.sxkj.fw.area.dto.FwAreaDivideDTO; |
| | | import org.sxkj.fw.area.dto.FwAreaDivideStatisticsDTO; |
| | | import org.sxkj.fw.area.entity.FwAreaDivideEntity; |
| | | import org.sxkj.fw.area.vo.FwAreaDivideVO; |
| | | import org.sxkj.fw.area.vo.FwAreaDivideStatisticsVO; |
| | | import org.sxkj.fw.area.excel.FwAreaDivideExcel; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.core.mp.base.BaseService; |
| | |
| | | * 区域划分表 服务类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-07 |
| | | * @since 2026-01-08 |
| | | */ |
| | | public interface IFwAreaDivideService extends BaseService<FwAreaDivideEntity> { |
| | | /** |
| | |
| | | * @param fwAreaDivide |
| | | * @return |
| | | */ |
| | | IPage<FwAreaDivideVO> selectFwAreaDividePage(IPage<FwAreaDivideVO> page, FwAreaDivideVO fwAreaDivide); |
| | | IPage<FwAreaDivideVO> selectFwAreaDividePage(IPage<FwAreaDivideVO> page, FwAreaDivideDTO fwAreaDivide); |
| | | |
| | | /** |
| | | * 列表 |
| | | * |
| | | * @param filterSelected |
| | | * @param sceneId |
| | | * @return |
| | | */ |
| | | List<FwAreaDivideVO> selectFwAreaDivideList(Integer filterSelected, Long sceneId); |
| | | |
| | | /** |
| | | * 统计分页 |
| | | * |
| | | * @param page |
| | | * @param fwAreaDivideStatistics |
| | | * @return |
| | | */ |
| | | IPage<FwAreaDivideStatisticsVO> selectFwAreaDivideStatisticsPage(IPage<FwAreaDivideStatisticsVO> page, FwAreaDivideStatisticsDTO fwAreaDivideStatistics); |
| | | |
| | | /** |
| | | * 统计详情 |
| | | * |
| | | * @param fwAreaDivideStatistics |
| | | * @return |
| | | */ |
| | | FwAreaDivideStatisticsVO selectFwAreaDivideStatisticsDetail(FwAreaDivideStatisticsDTO fwAreaDivideStatistics); |
| | | |
| | | /** |
| | | * 详情 |
| | | * |
| | | * @param id |
| | | * @return |
| | | */ |
| | | FwAreaDivideVO selectFwAreaDivideDetail(Long id); |
| | | |
| | | /** |
| | | * 导出数据 |