|
@@ -1,5 +1,6 @@
|
|
|
using Microsoft.Data.SqlClient;
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
+using Newtonsoft.Json.Schema;
|
|
|
using Quartz;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
@@ -31,7 +32,10 @@ namespace wispro.sp.api.Job
|
|
|
|
|
|
dynamic retItem = new ExpandoObject();
|
|
|
|
|
|
+
|
|
|
+
|
|
|
JsonElement json = ((System.Text.Json.JsonElement)response);
|
|
|
+
|
|
|
retItem.CaseNo = json.GetProperty("CaseNo").GetString();
|
|
|
retItem.ApplicationType = json.GetProperty("ApplicationType").GetString();
|
|
|
retItem.BusinessType = json.GetProperty("BusinessType").GetString();
|
|
@@ -244,8 +248,8 @@ namespace wispro.sp.api.Job
|
|
|
retItem.ReturnDate = row["back_date"].ToString();
|
|
|
retItem.CaseType = row["case_type_zh_cn"].ToString();
|
|
|
retItem.CaseState = row["case_status_zh_cn"].ToString();
|
|
|
- retItem.DoItemMemo = row["proc_status_zh_cn"].ToString();
|
|
|
- retItem.DoItemState = row["proc_note"].ToString();
|
|
|
+ retItem.DoItemState = row["proc_status_zh_cn"].ToString();
|
|
|
+ retItem.DoItemMemo = row["proc_note"].ToString();
|
|
|
retItem.CaseName = row["case_name"].ToString();
|
|
|
retItem.EntrustingDate = row["charge_date"].ToString();
|
|
|
retItem.CustomerLimitDate = row["cus_due_date"].ToString();
|