|
@@ -21,6 +21,10 @@ namespace MySystem
|
|
|
RadioCardItem Bind = Newtonsoft.Json.JsonConvert.DeserializeObject<RadioCardItem>(content);
|
|
RadioCardItem Bind = Newtonsoft.Json.JsonConvert.DeserializeObject<RadioCardItem>(content);
|
|
|
WebCMSEntities spdb = new WebCMSEntities();
|
|
WebCMSEntities spdb = new WebCMSEntities();
|
|
|
|
|
|
|
|
|
|
+ //{"activationStatusName":"已激活","activationTime":"04/27/2024 19:27:57","city":"滨州市","firstCharge":"否","iccId":"89861500152420011245","initialChargeAmount":0.00,"jobId":"VCH010203378","orderCreateTime":"04/27/2024 19:22:50","orderNo":"B20240427192249832266","orderStatus":"已完成","paidInAmount":100.00,"phoneNo":"19216292182","productName":"双百套餐","productTypeName":"基础套餐","province":"山东省"}
|
|
|
|
|
+
|
|
|
|
|
+ string json = "{\"OrderNo\":\"" + Bind.orderNo + "\",\"CreateDate\":\"" + Bind.orderCreateTime + "\",\"PhoneNumber\":\"" + Bind.phoneNo + "\",\"HasFirstCharge\":\"" + Bind.firstCharge + "\",\"FirstChargeAmount\":\"0\",\"Province\":\"" + Bind.province + "\",\"City\":\"" + Bind.city + "\",\"ProductName\":\"" + Bind.productName + "\",\"ActiveName\":\"\",\"ProductType\":\"" + Bind.productTypeName + "\",\"ActualAmount\":\"" + Bind.paidInAmount + "\",\"OrderStatus\":\"" + Bind.orderStatus + "\",\"ActStatus\":\"" + Bind.activationStatusName + "\",\"ActDate\":\"" + Bind.activationTime + "\",\"WorkNo\":\"" + Bind.jobId + "\",\"AccountName\":\"\",\"SimNo\":\"" + Bind.iccId + "\"}";
|
|
|
|
|
+
|
|
|
spdb.BindRecord.Add(new SpModels.BindRecord()
|
|
spdb.BindRecord.Add(new SpModels.BindRecord()
|
|
|
{
|
|
{
|
|
|
CreateDate = DateTime.Parse(Bind.orderCreateTime),
|
|
CreateDate = DateTime.Parse(Bind.orderCreateTime),
|
|
@@ -38,6 +42,7 @@ namespace MySystem
|
|
|
Field5 = Bind.activationStatusName,
|
|
Field5 = Bind.activationStatusName,
|
|
|
SeoTitle = Bind.paidInAmount.ToString("f2"),
|
|
SeoTitle = Bind.paidInAmount.ToString("f2"),
|
|
|
SeoKeyword = Bind.activationTime,
|
|
SeoKeyword = Bind.activationTime,
|
|
|
|
|
+ SeoDescription = json,
|
|
|
ProductType = "14",
|
|
ProductType = "14",
|
|
|
Status = 1,
|
|
Status = 1,
|
|
|
});
|
|
});
|