ISAPData.cs 889 B

123456789101112131415161718192021222324252627282930313233
  1. 
  2. using System.ServiceModel;
  3. using Dongke.IBOSS.PRD.WCF.DataModels;
  4. namespace Dongke.IBOSS.PRD.WCF.Contracts
  5. {
  6. /// <summary>
  7. /// SAP数据接口
  8. /// </summary>
  9. [ServiceContract(ConfigurationName = "SAPDataService.ISAPData",
  10. Name = "ISAPData",
  11. Namespace = "Dongke.IBOSS.PRD.WCF.Contracts")]
  12. public interface ISAPData
  13. {
  14. #region 共通接口
  15. /// <summary>
  16. /// 共通接口
  17. /// </summary>
  18. /// <param name="cre"></param>
  19. /// <returns></returns>
  20. [OperationContract]
  21. ServiceResultEntity DoRequest(ClientRequestEntity cre);
  22. #endregion
  23. #region Hegii
  24. ///// <summary>
  25. ///// 获取同步最后一次同步成功的日期
  26. ///// </summary>
  27. ///// <returns></returns>
  28. //ServiceResultEntity GetLastDateBy(string dataCode);
  29. #endregion
  30. }
  31. }