| File was renamed from drone-service/drone-gd/src/main/java/org/sxkj/gd/implementation/service/IGdImplementationListService.java |
| | |
| | | * this software without specific prior written permission. |
| | | * Author: Chill 庄骞 (smallchill@163.com) |
| | | */ |
| | | package org.sxkj.gd.implementation.service; |
| | | package org.sxkj.gd.implement.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | | import org.sxkj.gd.implementation.entity.GdImplementationListEntity; |
| | | import org.sxkj.gd.implementation.vo.GdImplementationListVO; |
| | | import org.sxkj.gd.implementation.excel.GdImplementationListExcel; |
| | | import org.sxkj.gd.implement.entity.GdThingListMaterialRelEntity; |
| | | import org.sxkj.gd.implement.vo.GdThingListMaterialRelVO; |
| | | import org.sxkj.gd.implement.excel.GdThingListMaterialRelExcel; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 实施清单表(实时清单管理) 服务类 |
| | | * 实施清单-材料关联表(情形化配置) 服务类 |
| | | * |
| | | * @author lw |
| | | * @since 2026-01-14 |
| | | * @author Aix |
| | | * @since 2026-01-31 |
| | | */ |
| | | public interface IGdImplementationListService extends BaseService<GdImplementationListEntity> { |
| | | public interface IGdThingListMaterialRelService extends BaseService<GdThingListMaterialRelEntity> { |
| | | /** |
| | | * 自定义分页 |
| | | * |
| | | * @param page |
| | | * @param gdImplementationList |
| | | * @param gdThingListMaterialRel |
| | | * @return |
| | | */ |
| | | IPage<GdImplementationListVO> selectGdImplementationListPage(IPage<GdImplementationListVO> page, GdImplementationListVO gdImplementationList); |
| | | IPage<GdThingListMaterialRelVO> selectGdThingListMaterialRelPage(IPage<GdThingListMaterialRelVO> page, GdThingListMaterialRelVO gdThingListMaterialRel); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param queryWrapper |
| | | * @return |
| | | */ |
| | | List<GdImplementationListExcel> exportGdImplementationList(Wrapper<GdImplementationListEntity> queryWrapper); |
| | | List<GdThingListMaterialRelExcel> exportGdThingListMaterialRel(Wrapper<GdThingListMaterialRelEntity> queryWrapper); |
| | | |
| | | } |