| 123456789101112131415161718192021222324252627282930313233 |
-
- using System.ServiceModel;
- using Dongke.IBOSS.PRD.WCF.DataModels;
- namespace Dongke.IBOSS.PRD.WCF.Contracts
- {
- /// <summary>
- /// SAP数据接口
- /// </summary>
- [ServiceContract(ConfigurationName = "SAPDataService.ISAPData",
- Name = "ISAPData",
- Namespace = "Dongke.IBOSS.PRD.WCF.Contracts")]
- public interface ISAPData
- {
- #region 共通接口
- /// <summary>
- /// 共通接口
- /// </summary>
- /// <param name="cre"></param>
- /// <returns></returns>
- [OperationContract]
- ServiceResultEntity DoRequest(ClientRequestEntity cre);
- #endregion
- #region Hegii
- ///// <summary>
- ///// 获取同步最后一次同步成功的日期
- ///// </summary>
- ///// <returns></returns>
- //ServiceResultEntity GetLastDateBy(string dataCode);
- #endregion
- }
- }
|