Files
shgx_tz_mes_backend_sync/ZR.Service/mes/wms/IService/IWmGoodsActionService.cs
2024-07-05 16:49:18 +08:00

32 lines
929 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using ZR.Model.MES.wms;
using ZR.Model.MES.wms.Dto;
namespace ZR.Service.mes.wms.IService
{
/// <summary>
/// 仓库操作日志service接口
/// </summary>
public interface IWmGoodsActionService : IBaseService<WmGoodsChangeLog>
{
/// <summary>
/// 拼箱2拼1
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
WmGoodsChangeLog doConsolidationGoods(WmGoodsConsolidationDto parm);
/// <summary>
/// 拼箱多拼1
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
WmGoodsChangeLog DoConsolidationGoods2(WmGoodsConsolidationDto2 parm);
/// <summary>
/// 拆箱1拆2
/// </summary>
/// <param name="parm"></param>
/// <returns></returns>
WmGoodsChangeLog doUnpackingGoods(WmGoodsUnpackingDto parm);
}
}