| 1234567891011121314151617181920212223242526272829303132333435363738 |
- /*******************************************************************************
- * Copyright(c) 2019 DongkeSoft All rights reserved. / Confidential
- * 类的信息:
- * 1.程序名称:IPDAModule.cs
- * 2.功能描述:PDA模块服务契约(半检专用)
- * 编辑履历:
- * 作者 日期 版本 修改内容
- * 徐伟 2019/12/02 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
- {
- [OperationContract]
- [WebInvoke(BodyStyle = WebMessageBodyStyle.WrappedRequest
- , ResponseFormat = WebMessageFormat.Json
- , RequestFormat = WebMessageFormat.Json)]
- ActionResult GetGoodsGradeDataSemi(string accountCode, string userCode, string userPassword, string sessionKey, int procedureId);
- }
- }
|