吉安感知网项目-后端
linwei
2026-01-23 fefe259f19a251d90d17d8a42e04f6332a4cad3e
drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/mapper/GdSupplyDemandMapper.java
@@ -16,6 +16,7 @@
 */
package org.sxkj.gd.orderdata.mapper;
import org.sxkj.gd.orderdata.dto.GdSupplyDemandDTO;
import org.sxkj.gd.orderdata.entity.GdSupplyDemandEntity;
import org.sxkj.gd.orderdata.param.GdSupplyDemandPageParam;
import org.sxkj.gd.orderdata.vo.GdSupplyDemandVO;
@@ -39,9 +40,44 @@
    *
    * @param page
    * @param gdSupplyDemand
    * @param deptIdList
    * @return
    */
   List<GdSupplyDemandVO> selectGdSupplyDemandPage(IPage page, @Param("param") GdSupplyDemandPageParam gdSupplyDemand);
   List<GdSupplyDemandVO> selectGdSupplyDemandPage(IPage page, @Param("param") GdSupplyDemandPageParam gdSupplyDemand, @Param("deptIdList") List<Long> deptIdList);
   /**
    * 列表分页
    *
    * @param page
    * @param gdSupplyDemand
    * @return
    */
   List<GdSupplyDemandEntity> selectGdSupplyDemandList(IPage page, @Param("param") GdSupplyDemandDTO gdSupplyDemand);
   /**
    * 详情查询
    *
    * @param gdSupplyDemand
    * @param deptIdList
    * @return
    */
   GdSupplyDemandEntity selectGdSupplyDemandDetail(@Param("param") GdSupplyDemandDTO gdSupplyDemand, @Param("deptIdList") List<Long> deptIdList);
   /**
    * 新增数据
    *
    * @param gdSupplyDemand
    * @return
    */
   int insertGdSupplyDemand(GdSupplyDemandEntity gdSupplyDemand);
   /**
    * 更新数据
    *
    * @param gdSupplyDemand
    * @return
    */
   int updateGdSupplyDemand(GdSupplyDemandEntity gdSupplyDemand);
   /**