DuGuYang il y a 1 an
Parent
commit
32b98831c1

+ 4 - 4
Areas/Api/Controllers/SysAdminController.cs

@@ -342,7 +342,7 @@ namespace MySystem.Areas.Api.Controllers.v1
         [Route("/v1/qrcodeplatemain/sysadmin/queryaccountbalance")]
         public JsonResult QueryAccountBalance(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Obj = QueryAccountBalanceDo(value);
             return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
@@ -391,7 +391,7 @@ namespace MySystem.Areas.Api.Controllers.v1
         [Route("/v1/qrcodeplatemain/sysadmin/withdrawalapply")]
         public JsonResult WithdrawalApply(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = WithdrawalApplyDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -428,7 +428,7 @@ namespace MySystem.Areas.Api.Controllers.v1
         [Route("/v1/qrcodeplatemain/sysadmin/querywithdrawalstatus")]
         public JsonResult QueryWithdrawalStatus(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Obj = QueryWithdrawalStatusDo(value);
             return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
@@ -451,7 +451,7 @@ namespace MySystem.Areas.Api.Controllers.v1
         [Route("/v1/qrcodeplatemain/sysadmin/withdrawalapplyrecordlist")]
         public JsonResult WithdrawalApplyRecordList(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Other = new Dictionary<string, object>();
             List<Dictionary<string, object>> dataList = WithdrawalApplyRecordListDo(value, out Other);

+ 2 - 2
Areas/Api/Controllers/v1/Main1/ConsumerOrdersController.cs

@@ -154,7 +154,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main1
         [Authorize]
         public JsonResult DirectDivideQuery(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Obj = DirectDivideQueryDo(value);
             return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
@@ -178,7 +178,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main1
         [Authorize]
         public JsonResult DirectAddDivide(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = DirectAddDivideDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });

+ 4 - 4
Areas/Api/Controllers/v1/Main1/MerchantAddInfoController.cs

@@ -189,7 +189,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main1
         [Authorize]
         public JsonResult DirectQueryMerchantTradeInfo(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Other = new Dictionary<string, object>();
             List<Dictionary<string, object>> dataList = DirectQueryMerchantTradeInfoDo(value, out Other);
@@ -358,7 +358,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main1
         [Authorize]
         public JsonResult DirectAlipayMerchantAdd(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = DirectAlipayMerchantAddDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -382,7 +382,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main1
         [Authorize]
         public JsonResult DirectWeChatMerchantQueryAudit(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Obj = DirectWeChatMerchantQueryAuditDo(value);
             return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
@@ -416,7 +416,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main1
         [Authorize]
         public JsonResult DirectAlipayMerchantQueryAudit(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Obj = DirectAlipayMerchantQueryAuditDo(value);
             return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });

+ 2 - 2
Areas/Api/Controllers/v1/Main2/ConsumerOrdersController.cs

@@ -153,7 +153,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionDivideQuery(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Obj = UnionDivideQueryDo(value);
             return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
@@ -177,7 +177,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionAddDivide(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = UnionAddDivideDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });

+ 7 - 7
Areas/Api/Controllers/v1/Main2/MerchantAddInfoController.cs

@@ -210,7 +210,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionPayQueryMerchantTradeInfo(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Other = new Dictionary<string, object>();
             List<Dictionary<string, object>> dataList = UnionPayQueryMerchantTradeInfoDo(value, out Other);
@@ -302,7 +302,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionWeChatMerchantOpenAccount(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = UnionWeChatMerchantOpenAccountDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -321,7 +321,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionAlipayMerchantOpenAccount(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = UnionAlipayMerchantOpenAccountDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -340,7 +340,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionMerchantAdd(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = UnionMerchantAddDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -359,7 +359,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionMerchantBindWeChatAppId(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = UnionMerchantBindWeChatAppIdDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -379,7 +379,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionMerchantGetAuth(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Obj = UnionMerchantGetAuthDo(value);
             return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });
@@ -404,7 +404,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionMerchantQueryStatus(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             Dictionary<string, object> Obj = UnionMerchantQueryStatusDo(value);
             return Json(new AppResultJson() { Status = "1", Info = "", Data = Obj });