|
|
@@ -24,7 +24,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
|
|
|
|
|
|
|
|
|
#region 商户管理-商户管理-银联商户活动变更记录
|
|
|
- [Authorize]
|
|
|
+ // [Authorize]
|
|
|
public JsonResult UnionPayMerchantParamSetRecordList(string value)
|
|
|
{
|
|
|
value = PublicFunction.DesDecrypt(value);
|
|
|
@@ -53,6 +53,9 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
|
|
|
{
|
|
|
status = 1;
|
|
|
}
|
|
|
+ var Version = merSet.Version;
|
|
|
+ var a = subdata["BeforeIsAll"].ToString();
|
|
|
+ var b = subdata["AfterIsAll"].ToString();
|
|
|
if (subdata["BeforeIsAll"].ToString() == "0" && subdata["AfterIsAll"].ToString() == "1")
|
|
|
{
|
|
|
status = 0;
|
|
|
@@ -61,7 +64,7 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
|
|
|
{
|
|
|
status = -1;
|
|
|
}
|
|
|
- curData.Add("Status", int.Parse(subdata["Status"].ToString())); //活动状态(1 使用中 -1 已失效 0 已关闭)
|
|
|
+ curData.Add("Status", status); //活动状态(1 使用中 -1 已失效 0 已关闭)
|
|
|
curData.Add("MerchantName", MerchantAddInfoService.Query(int.Parse(subdata["MerchantId"].ToString())).CertMerchantName); //商户名称
|
|
|
curData.Add("CreateDate", subdata["CreateDate"].ToString() == "" ? "" : DateTime.Parse(subdata["CreateDate"].ToString()).ToString("yyyy-MM-dd HH:mm:ss")); //最后操作时间
|
|
|
curData.Add("GetPercent", subdata["AfterGetPercent"].ToString()); //实收比例
|