DuGuYang 1 жил өмнө
parent
commit
990a20ee73

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

@@ -346,7 +346,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 });
@@ -395,7 +395,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 });
@@ -432,7 +432,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 });
@@ -455,7 +455,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);

+ 4 - 4
Areas/Api/Controllers/v1/Bs/PageInfoController.cs

@@ -27,7 +27,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Bs
         [Authorize]
         public JsonResult AgreementInfoList(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 = AgreementInfoListDo(value, out Other);
@@ -63,7 +63,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Bs
         [Authorize]
         public JsonResult AddAgreementInfo(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = AddAgreementInfoDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -96,7 +96,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Bs
         [Authorize]
         public JsonResult EditAgreementInfo(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = EditAgreementInfoDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -133,7 +133,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Bs
         [Authorize]
         public JsonResult DeleteAgreementInfo(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = DeleteAgreementInfoDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });

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

@@ -201,7 +201,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 });
@@ -225,7 +225,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 });

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

@@ -369,7 +369,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 });
@@ -393,7 +393,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 });
@@ -427,7 +427,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/Main1/MerchantInfoController.cs

@@ -177,7 +177,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main1
         [Authorize]
         public JsonResult DirectActOrderCompletion(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = DirectActOrderCompletionDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -211,7 +211,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main1
         [Authorize]
         public JsonResult DirectOrderCompletion(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = DirectOrderCompletionDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });

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

@@ -200,7 +200,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 });
@@ -224,7 +224,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 });

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

@@ -315,7 +315,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 });
@@ -334,7 +334,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 });
@@ -353,7 +353,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 });
@@ -372,7 +372,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 });
@@ -392,7 +392,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 });
@@ -417,7 +417,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 });

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

@@ -172,7 +172,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionPayActOrderCompletion(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = UnionPayActOrderCompletionDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });
@@ -205,7 +205,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
         [Authorize]
         public JsonResult UnionPayOrderCompletion(string value)
         {
-            value = PublicFunction.DesDecrypt(value); ;
+            value = PublicFunction.DesDecrypt(value);
             JsonData data = JsonMapper.ToObject(value);
             AppResultJson result = UnionPayOrderCompletionDo(value);
             return Json(new AppResultJson() { Status = result.Status, Info = result.Info, Data = result.Data });