package com.wms_admin.server.service;
|
|
import com.baomidou.mybatisplus.core.metadata.IPage;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.wms_admin.server.entity.OutProduct;
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* <p>
|
* 服务类
|
* </p>
|
*
|
* @author 江苏鵷雏网络科技有限公司
|
* @since 2023-05-24
|
*/
|
public interface OutProductService extends IService<OutProduct> {
|
|
/**
|
* 分页查询出库历史数据
|
* @param startTime 开始时间
|
* @param endTime 结束时间
|
* @param productModel 型号
|
* @param page 从多少页开始查询,一共查询多少页数据
|
* @return
|
*/
|
IPage<OutProduct> SelectOutProductPage(String startTime, String endTime, String productModel, Page page);
|
|
/**
|
* 添加出库数据
|
* @param orderInformationId 订单编号
|
* @param listCode 入库ID编码
|
* @param outPerson 出库人
|
*/
|
void ListAddOutProduct(Integer orderInformationId, String listCode, String outPerson);
|
|
/**
|
* 超出30天数据
|
* @param startTime
|
* @param endTime
|
* @param productModel
|
* @return
|
*/
|
List<OutProduct> ExcelDerive(String startTime, String endTime, String productModel);
|
}
|