Пример #1
0
 public ResultDTO <List <Jinher.AMP.YJB.Deploy.PriceChangeDetailDTO> > GetYXChangeComInfo(List <Guid> appId)
 {
     try
     {
         Jinher.AMP.YJB.ISV.Facade.ChangePriceFacade Facade = new YJB.ISV.Facade.ChangePriceFacade();
         return(Facade.GetYXChangeComInfo(appId));
     }
     catch (Exception ex)
     {
         LogHelper.Error("YJBSV.GetYXChangeComInfo服务异常,获取用户的易捷币信息异常。 输入:appids=" + JsonHelper.JsonSerializer(appId), ex);
         return(new ResultDTO <List <Jinher.AMP.YJB.Deploy.PriceChangeDetailDTO> >());
     }
 }
Пример #2
0
 public ResultDTO <List <Jinher.AMP.YJB.Deploy.PriceChangeDetailDTO> > GetAllChangeInfo(System.Collections.Generic.List <System.Guid> Appids, string StarTime, string EndTime)
 {
     try
     {
         Jinher.AMP.YJB.ISV.Facade.ChangePriceFacade Facade = new YJB.ISV.Facade.ChangePriceFacade();
         Facade.ContextDTO = AuthorizeHelper.CoinInitAuthorizeInfo();
         var result = Facade.GetAllChangeInfo(Appids, StarTime, EndTime);
         LogHelper.Info(string.Format("获取到定时改价商品条数:{0}", result.Data.Count));
         return(result);
     }
     catch (Exception ex)
     {
         LogHelper.Error("YJBSV.GetAllChangeInfoExt获取定时改价商品信息", ex);
         return(new ResultDTO <List <Jinher.AMP.YJB.Deploy.PriceChangeDetailDTO> >());
     }
 }