|
@@ -68,43 +68,37 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
string UserId = data["UserId"].ToString(); //创客Id
|
|
|
|
|
|
List<Dictionary<string, object>> list = new List<Dictionary<string, object>>();
|
|
|
- List<KqProducts> querys = KqProductsDbconn.Instance.GetList();
|
|
|
- foreach (KqProducts query in querys)
|
|
|
+ Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
+
|
|
|
+ UserMachineData MachineData = UserMachineDataDbconn.Instance.Get(UserId + "_0") ?? new UserMachineData();
|
|
|
+ Dictionary<string, object> Machine = new Dictionary<string, object>();
|
|
|
+ Machine.Add("TotalMachineCount", MachineData.TotalMachineCount); //总机具数
|
|
|
+ Machine.Add("UnBindCount", MachineData.UnBindCount); //未绑定机具数
|
|
|
+ Machine.Add("BindCount", MachineData.BindCount); //已绑定机具数
|
|
|
+ Obj.Add("Machine", Machine); //机具管理数据
|
|
|
+
|
|
|
+ Dictionary<string, object> Profit = new Dictionary<string, object>();
|
|
|
+ Profit.Add("TradeProfit", MachineData.TradeProfit); //交易分润
|
|
|
+ Profit.Add("ActProfit", MachineData.ActProfit); //激活奖励
|
|
|
+ Profit.Add("OpenProfit", MachineData.OpenProfit); //开机奖励
|
|
|
+ Profit.Add("DividendsProfit", MachineData.DividendsProfit); //分红奖励
|
|
|
+ Profit.Add("OtherProfit", MachineData.OtherProfit); //分润补贴
|
|
|
+ Profit.Add("FluxProfit", MachineData.FluxProfit); //流量卡分佣
|
|
|
+ Obj.Add("Profit", Profit); //收益查看数据
|
|
|
+
|
|
|
+ List<Dictionary<string, object>> Advertisment = new List<Dictionary<string, object>>();
|
|
|
+ string ColId = "";
|
|
|
+ List<Models.Advertisment> ads = AdvertismentDbconn.Instance.GetList(ColId);
|
|
|
+ foreach (Models.Advertisment ad in ads)
|
|
|
{
|
|
|
- Dictionary<string, object> Obj = new Dictionary<string, object>();
|
|
|
- Obj.Add("Id", query.Id);
|
|
|
- Obj.Add("Name", query.Name); //名称
|
|
|
-
|
|
|
- UserMachineData MachineData = UserMachineDataDbconn.Instance.Get(UserId + "_" + query.Id) ?? new UserMachineData();
|
|
|
- Dictionary<string, object> Machine = new Dictionary<string, object>();
|
|
|
- Machine.Add("TotalMachineCount", MachineData.TotalMachineCount); //总机具数
|
|
|
- Machine.Add("UnBindCount", MachineData.UnBindCount); //未绑定机具数
|
|
|
- Machine.Add("BindCount", MachineData.BindCount); //已绑定机具数
|
|
|
- Obj.Add("Machine", Machine); //机具管理数据
|
|
|
-
|
|
|
- Dictionary<string, object> Profit = new Dictionary<string, object>();
|
|
|
- Profit.Add("TradeProfit", MachineData.TradeProfit); //交易分润
|
|
|
- Profit.Add("ActProfit", MachineData.ActProfit); //激活奖励
|
|
|
- Profit.Add("OpenProfit", MachineData.OpenProfit); //开机奖励
|
|
|
- Profit.Add("DividendsProfit", MachineData.DividendsProfit); //分红奖励
|
|
|
- Profit.Add("OtherProfit", MachineData.OtherProfit); //分润补贴
|
|
|
- Profit.Add("FluxProfit", MachineData.FluxProfit); //流量卡分佣
|
|
|
- Obj.Add("Profit", Profit); //收益查看数据
|
|
|
-
|
|
|
- List<Dictionary<string, object>> Advertisment = new List<Dictionary<string, object>>();
|
|
|
- string ColId = "";
|
|
|
- List<Models.Advertisment> ads = AdvertismentDbconn.Instance.GetList(ColId);
|
|
|
- foreach (Models.Advertisment ad in ads)
|
|
|
- {
|
|
|
- Dictionary<string, object> item = new Dictionary<string, object>();
|
|
|
- item.Add("Url", ad.Url); //跳转地址
|
|
|
- item.Add("BannerPic", DefaultPic(ad.PicPath)); //广告图片
|
|
|
- item.Add("Id", ad.Id); //Id
|
|
|
- Advertisment.Add(item);
|
|
|
- }
|
|
|
- Obj.Add("Advertisment", Advertisment);
|
|
|
- list.Add(Obj);
|
|
|
+ Dictionary<string, object> item = new Dictionary<string, object>();
|
|
|
+ item.Add("Url", ad.Url); //跳转地址
|
|
|
+ item.Add("BannerPic", DefaultPic(ad.PicPath)); //广告图片
|
|
|
+ item.Add("Id", ad.Id); //Id
|
|
|
+ Advertisment.Add(item);
|
|
|
}
|
|
|
+ Obj.Add("Advertisment", Advertisment);
|
|
|
+ list.Add(Obj);
|
|
|
return list;
|
|
|
}
|
|
|
#endregion
|