|
|
@@ -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 });
|