You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
637 B
C#
22 lines
637 B
C#
/*
|
|
*所有关于OP_WMS_FEEPAYINFO类的业务代码接口应在此处编写
|
|
*/
|
|
using VOL.Core.BaseProvider;
|
|
using VOL.Entity.DomainModels;
|
|
using VOL.Core.Utilities;
|
|
using System.Linq.Expressions;
|
|
namespace VOL.WMS.IServices
|
|
{
|
|
public partial interface IOP_WMS_FEEPAYINFOService
|
|
{
|
|
public WebResponseContent ResetFeePayInfo(OP_WMS_TRANSFERGOODS head);
|
|
|
|
/// <summary>
|
|
/// 20220330 取消货转时 重置旧库存的费用记录
|
|
/// </summary>
|
|
/// <param name="head"></param>
|
|
/// <returns></returns>
|
|
public WebResponseContent UndoFeePayInfo(OP_WMS_TRANSFERGOODS head);
|
|
}
|
|
}
|