using System; using System.Collections.Generic; using System.Text; using System.ServiceModel; using System.Data; using SiaSun.LMS.Model; namespace SiaSun.LMS.Interface { [ServiceContract()] [ServiceKnownType(typeof(SiaSun.LMS.Model.SYS_USER))] [ServiceKnownType(typeof(SiaSun.LMS.Model.MANAGE_LIST))] [ServiceKnownType(typeof(SiaSun.LMS.Model.MANAGE_MAIN))] [ServiceKnownType(typeof(List))] [ServiceKnownType(typeof(List))] public partial interface I_ManageService { [OperationContract] void ControlTranslate(string WAREHOUSE); [OperationContract] bool RecordCreate(int MANAGE_ID, string sManageStatus, out string sResult); [OperationContract] IList ManageTypeParamGetList(int MANAGE_TYPE_ID); /// 根据出库起始货位创建任务列表 /// /// /// /// /// /// [OperationContract] bool MANAGE_LIST_CREATE(int START_CELL_ID, out List listMANAGE_LIST, out string sResult); [OperationContract] bool ManageInAndroid(out string sResult, MANAGE_MAIN mm, MANAGE_LIST[] lManageList); [OperationContract] bool ManageOutAndroid(out string sResult, MANAGE_MAIN mm, MANAGE_LIST[] lManageList); [OperationContract] bool ManageUpAndroid(out string sResult, MANAGE_MAIN mm, MANAGE_LIST[] lManageList); [OperationContract] bool CallManageOutAndroid(int EndId, string User, string GoodsCode, out string sResult); [OperationContract] bool LiKuOutAndroid(out string sResult, MANAGE_MAIN mm, MANAGE_LIST[] lManageList); [OperationContract] string GetGoodsProperty05(string sDeviceCode); } }