public Dictionary <string, Object> GetDistributor(string memLoginID)
        {
            try
            {
                if (!string.IsNullOrEmpty(memLoginID))
                {
                    Dictionary <string, Object> dic = new Dictionary <string, object>();
                    dynamic resultModel             = CommonRequest.ApiGetMyRebateList(memLoginID);
                    if (resultModel != null)
                    {
                        dic.Add("Data", resultModel.Data);
                        return(dic);
                    }
                }

                return(null);
            }
            catch (Exception e)
            {
                logger.Error("获取返利收益接口异常:" + e.Message);
                return(null);
            }
        }