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.
41 lines
1.1 KiB
41 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.LdTwoOutStorageDto; |
|
import com.nov.KgLowDurable.pojo.entity.LdTwoOutStorage; |
|
import com.nov.KgLowDurable.pojo.vo.LdTwoOutStorageInfoVO; |
|
import java.util.Date; |
|
|
|
|
|
/** |
|
* 审批 |
|
* @author liweidong |
|
*/ |
|
public interface ILdTwoOutStorageService extends IService<LdTwoOutStorage> { |
|
|
|
/** |
|
* 二级出库列表 |
|
* @param startTime |
|
* @param endTime |
|
* @param shipperName |
|
* @param departmentId |
|
* @param pageNum |
|
* @param pageSize |
|
* @return |
|
*/ |
|
PageInfo<LdTwoOutStorage> getTwoOutStorageList(Date startTime, Date endTime, String shipperName, String departmentId, Integer pageNum, Integer pageSize); |
|
|
|
/** |
|
* 二级出库提交 |
|
* @param dto |
|
* @return |
|
*/ |
|
boolean submit(LdTwoOutStorageDto dto); |
|
|
|
/** |
|
* 二级出库详情 |
|
* @param twoOutStorageId |
|
* @return |
|
*/ |
|
LdTwoOutStorageInfoVO getDetail(Long twoOutStorageId); |
|
}
|
|
|