Browse Source

pref: 异地、个人账户支付优化

zhengjie 1 year ago
parent
commit
c61d1ec35d
1 changed files with 19 additions and 0 deletions
  1. 19 0
      Business/Local/TestProcess.cs

+ 19 - 0
Business/Local/TestProcess.cs

@@ -0,0 +1,19 @@
+using Newtonsoft.Json.Linq;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace PTMedicalInsurance.Business.Local
+{
+    public class TestProcess
+    {
+        public void test(JObject joInput)
+        {
+            OPSettlementProcess process = new OPSettlementProcess();
+            process.Handle(joInput);
+
+        }
+    }
+}