package com.chinaztt.mes.warehouse.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.chinaztt.mes.warehouse.entity.ReverseStockApply;
|
import com.chinaztt.mes.warehouse.entity.ReverseStockApplyDetail;
|
|
import java.util.List;
|
|
/**
|
* @Author: Zero
|
* @Date: 2022/9/16 17:34
|
* @Description:
|
*/
|
public interface ReverseStockApplyService extends IService<ReverseStockApply> {
|
/**
|
* 生成生产退料申请表
|
*
|
* @return
|
*/
|
Boolean generateApply();
|
|
/**
|
* 执行退料移库
|
*
|
* @param ids
|
* @return
|
*/
|
String executeReverseMoveLocation(List<Long> ids);
|
|
/**
|
* 删除退料申请
|
*
|
* @param idList
|
* @return
|
*/
|
Boolean deleteApply(List<Long> idList);
|
}
|