package com.sunda.spmswms.service;

import com.baomidou.mybatisplus.extension.service.IService;
import com.sunda.spmscommon.ResponseResult;
import com.sunda.spmswms.entity.WhsOtherTask;

/**
 * <p>
 * 异常出入库任务表撤销 服务类
 * </p>
 *
 * @author Wayne
 * @since 2021-06-16
 */
public interface IWhsOtherTaskCancelService extends IService<WhsOtherTask> {

    /** 已提交SAP成功了的 其他出入库 - 撤销功能 */
    ResponseResult cancelWhsOtherTask(String userId, String whsOtherUuid, String cancelDate, String cancelRemark);

    /** 异常回滚测试 */
    ResponseResult checkException(String aa, String bb);
}
