| | |
| | | */ |
| | | 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; |
| | |
| | | */ |
| | | List<GdSupplyDemandVO> selectGdSupplyDemandPage(IPage page, @Param("param") GdSupplyDemandPageParam gdSupplyDemand); |
| | | |
| | | /** |
| | | * 列表分页 |
| | | * |
| | | * @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); |
| | | |
| | | |
| | | /** |
| | | * 获取导出数据 |