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/IGdImplementListService.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.GdImplementListDTO; |
| | | import org.sxkj.gd.implement.entity.GdImplementListEntity; |
| | | import org.sxkj.gd.implement.param.GdImplementListPageParam; |
| | | import org.sxkj.gd.implement.vo.GdImplementListVO; |
| | | import org.sxkj.gd.implement.excel.GdImplementListExcel; |
| | | 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 IGdImplementListService extends BaseService<GdImplementListEntity> { |
| | | /** |
| | | * 自定义分页 |
| | | * |
| | | * @param page |
| | | * @param gdImplementationList |
| | | * @param gdImplementList |
| | | * @return |
| | | */ |
| | | IPage<GdImplementationListVO> selectGdImplementationListPage(IPage<GdImplementationListVO> page, GdImplementationListVO gdImplementationList); |
| | | IPage<GdImplementListVO> selectGdImplementListPage(IPage<GdImplementListVO> page, GdImplementListPageParam gdImplementList); |
| | | |
| | | |
| | | /** |
| | |
| | | * @param queryWrapper |
| | | * @return |
| | | */ |
| | | List<GdImplementationListExcel> exportGdImplementationList(Wrapper<GdImplementationListEntity> queryWrapper); |
| | | List<GdImplementListExcel> exportGdImplementList(Wrapper<GdImplementListEntity> queryWrapper); |
| | | |
| | | } |