copy from drone-service/drone-gd/src/main/java/org/sxkj/gd/implementation/service/IGdImplementationListService.java
copy to drone-service/drone-gd/src/main/java/org/sxkj/gd/implement/service/IGdMaterialService.java
| File was copied 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.dto.GdMaterialDTO; |
| | | import org.sxkj.gd.implement.entity.GdMaterialEntity; |
| | | import org.sxkj.gd.implement.vo.GdMaterialVO; |
| | | import org.sxkj.gd.implement.excel.GdMaterialExcel; |
| | | 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 IGdMaterialService extends BaseService<GdMaterialEntity> { |
| | | /** |
| | | * 自定义分页 |
| | | * |
| | | * @param page |
| | | * @param gdImplementationList |
| | | * @param gdMaterial |
| | | * @return |
| | | */ |
| | | IPage<GdImplementationListVO> selectGdImplementationListPage(IPage<GdImplementationListVO> page, GdImplementationListVO gdImplementationList); |
| | | IPage<GdMaterialVO> selectGdMaterialPage(IPage<GdMaterialVO> page, GdMaterialDTO gdMaterial); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param queryWrapper |
| | | * @return |
| | | */ |
| | | List<GdImplementationListExcel> exportGdImplementationList(Wrapper<GdImplementationListEntity> queryWrapper); |
| | | List<GdMaterialExcel> exportGdMaterial(Wrapper<GdMaterialEntity> queryWrapper); |
| | | |
| | | } |