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.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/*
*所有关于Op_Wms_Logic类的业务代码接口应在此处编写
*/
using VOL.Core.BaseProvider ;
using VOL.Entity.DomainModels ;
using VOL.Core.Utilities ;
using System.Linq.Expressions ;
using System ;
using System.Threading.Tasks ;
namespace VOL.WMS.IServices
{
public partial interface IOp_Wms_LogicService
{
/// <summary>
/// 向逻辑仓储表中插一条数据 PID, NAME, Value
/// 如有 则更新内容
/// </summary>
/// <param name="PID"></param>
/// <param name="NAME"></param>
/// <param name="Value"></param>
/// <returns></returns>
public WebResponseContent InsertDetail ( Guid PID , string NAME , string Value , Guid ? WMSID = null , string VALUE2 = null , string VALUE3 = null ) ;
public WebResponseContent 建 立 客 户 订 单 项 ( Guid PID , Guid WMSID , string Value ) ;
public WebResponseContent GetConditionList ( PageDataOptions options ) ;
public bool 有 加 班 ( Guid PID ) ;
public bool 合 并 入 库 ( Guid PID ) ;
public WebResponseContent SaveLogicList ( SaveModel saveModel ) ;
}
}