You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
package com.nov.KgLowDurable.service; |
|
import com.baomidou.mybatisplus.extension.service.IService; |
|
import com.github.pagehelper.PageInfo; |
|
import com.nov.KgLowDurable.pojo.dto.LdTwoPutStorageDto; |
|
import com.nov.KgLowDurable.pojo.entity.LdTwoPutStorage; |
|
import com.nov.KgLowDurable.pojo.vo.LdTwoPutStorageInfoVO; |
|
import com.nov.KgLowDurable.pojo.vo.LdTwoPutStorageVO; |
|
import java.util.Date; |
|
|
|
/** |
|
* @author liweidong |
|
*/ |
|
public interface ILdTwoPutStorageService extends IService<LdTwoPutStorage> { |
|
|
|
/** |
|
* 获取二级出库列表 |
|
* @param startTime |
|
* @param endTime |
|
* @param inOperator |
|
* @param demandDepartment |
|
* @param pageNum |
|
* @param pageSize |
|
* @return |
|
*/ |
|
PageInfo<LdTwoPutStorageVO> getTwoPutStorageList(Date startTime, Date endTime, String inOperator, String demandDepartment, Integer pageNum, Integer pageSize); |
|
|
|
/** |
|
* 获取二级入库详情 |
|
* @param twoPutStorageId |
|
* @return |
|
*/ |
|
LdTwoPutStorageInfoVO getDetail(Long twoPutStorageId); |
|
|
|
/** |
|
* 二级入库提交 |
|
* @param dto |
|
* @return |
|
*/ |
|
boolean submit(LdTwoPutStorageDto dto); |
|
}
|
|
|