| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*******************************************************************************
- * Copyright(c) 2019 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:IPDAModule.cs
- * 2.功能描述:PDA模块服务契约(三车间专用)
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 徐伟 2019/11/05 1.00 新建
- *******************************************************************************/
- using System.Collections.Generic;
- using System.IO;
- using System.ServiceModel;
- using System.ServiceModel.Web;
- using Dongke.IBOSS.PRD.WCF.DataModels;
- using Dongke.IBOSS.PRD.WCF.DataModels.ConfigModule;
- using Dongke.IBOSS.PRD.WCF.DataModels.HRModule;
- using Dongke.IBOSS.PRD.WCF.DataModels.PCModule;
- using Dongke.IBOSS.PRD.WCF.DataModels.PMModule;
- using System.Data;
- namespace Dongke.IBOSS.PRD.WCF.Contracts
- {
- /// <summary>
- /// PDA模块服务契约
- /// </summary>
- //[ServiceContract(ConfigurationName = "PDAModuleService.IPDAModule",
- //Name = "IPDAModule",
- //Namespace = "Dongke.IBOSS.PRD.WCF.Contracts")]
- public partial interface IPDAModule
- {
- #region feiy 2022-70-20 装具
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult CheckEntruckUser(string accountCode, string userCode, string userPassword, string sessionKey, string functionCode,string currentUserCode);
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult GetTruckStatus(string accountCode, string userCode, string userPassword, string sessionKey, string entruckingCode);
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult CheckTruckBarCode(string accountCode, string userCode, string userPassword, string sessionKey, string barCode);
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult AddTruckBarCodes(string accountCode, string userCode, string userPassword, string sessionKey, string barCodes, string entruckingCode, string currentUserCode);
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult GetTruckBarCodes(string accountCode, string userCode, string userPassword, string sessionKey, string entruckingCode);
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult UnbindTruckBarCodes(string accountCode, string userCode, string userPassword, string sessionKey, string entruckingCode, string currentUserCode);
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult AddTruckBarCode(string accountCode, string userCode, string userPassword, string sessionKey, string barCode, string entruckingCode, string currentUserCode);
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult UnbindTruckBarCode(string accountCode, string userCode, string userPassword, string sessionKey, string barCode, string entruckingCode, string currentUserCode);
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult CheckTruckBarCodeForUnbind(string accountCode, string userCode, string userPassword, string sessionKey, string barCode, string entruckingCode);
- #endregion
- }
- }
|