IPDAModuleSemi.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*******************************************************************************
  2. * Copyright(c) 2019 DongkeSoft All rights reserved. / Confidential
  3. * 类的信息:
  4. * 1.程序名称:IPDAModule.cs
  5. * 2.功能描述:PDA模块服务契约(半检专用)
  6. * 编辑履历:
  7. * 作者 日期 版本 修改内容
  8. * 徐伟 2019/12/02 1.00 新建
  9. *******************************************************************************/
  10. using System.Collections.Generic;
  11. using System.IO;
  12. using System.ServiceModel;
  13. using System.ServiceModel.Web;
  14. using Dongke.IBOSS.PRD.WCF.DataModels;
  15. using Dongke.IBOSS.PRD.WCF.DataModels.ConfigModule;
  16. using Dongke.IBOSS.PRD.WCF.DataModels.HRModule;
  17. using Dongke.IBOSS.PRD.WCF.DataModels.PCModule;
  18. using Dongke.IBOSS.PRD.WCF.DataModels.PMModule;
  19. using System.Data;
  20. namespace Dongke.IBOSS.PRD.WCF.Contracts
  21. {
  22. /// <summary>
  23. /// PDA模块服务契约
  24. /// </summary>
  25. //[ServiceContract(ConfigurationName = "PDAModuleService.IPDAModule",
  26. //Name = "IPDAModule",
  27. //Namespace = "Dongke.IBOSS.PRD.WCF.Contracts")]
  28. public partial interface IPDAModule
  29. {
  30. [OperationContract]
  31. [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
  32. , ResponseFormat = WebMessageFormat.Json
  33. , RequestFormat = WebMessageFormat.Json)]
  34. ActionResult GetGoodsGradeDataSemi(string accountCode, string userCode, string userPassword, string sessionKey, int procedureId);
  35. }
  36. }