|
@@ -150,6 +150,27 @@ namespace MySystem.Controllers
|
|
|
db.Dispose();
|
|
|
return "ok";
|
|
|
}
|
|
|
+
|
|
|
+ public string addmer(int id = 0)
|
|
|
+ {
|
|
|
+ List<int> ids = new List<int>();
|
|
|
+ ids.Add(2640);
|
|
|
+ ids.Add(2705);
|
|
|
+ ids.Add(2707);
|
|
|
+ ids.Add(2708);
|
|
|
+ ids.Add(2709);
|
|
|
+ ids.Add(2710);
|
|
|
+ WebCMSEntities db = new WebCMSEntities();
|
|
|
+ foreach(int sid in ids)
|
|
|
+ {
|
|
|
+ MerchantAddInfo add = db.MerchantAddInfo.FirstOrDefault(m => m.Id == sid) ?? new MerchantAddInfo();
|
|
|
+ MerchantInfo mer = db.MerchantInfo.FirstOrDefault(m => m.Id == sid) ?? new MerchantInfo();
|
|
|
+ add.MchtNo = add.SubMchid + "_" + add.AlipayPid;
|
|
|
+ PosPushDataNewHelper.Bind(add, mer);
|
|
|
+ }
|
|
|
+ db.Dispose();
|
|
|
+ return "ok";
|
|
|
+ }
|
|
|
|
|
|
}
|
|
|
}
|