From 70c08d5a565139b440b73d8b9d9c8c20c7942cd6 Mon Sep 17 00:00:00 2001 From: lingling <kety1122@163.com> Date: 星期五, 14 三月 2025 15:11:23 +0800 Subject: [PATCH] 添加逻辑 --- LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYOutput.cs | 28 ++++++++++++++++++++++------ 1 files changed, 22 insertions(+), 6 deletions(-) diff --git a/LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYOutput.cs b/LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYOutput.cs index c8c348d..3375781 100644 --- a/LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYOutput.cs +++ b/LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYOutput.cs @@ -1,10 +1,5 @@ 锘縰sing Newtonsoft.Json; -using System; using System.Collections.Generic; -using System.ComponentModel.DataAnnotations; -using System.Linq; -using System.Text; -using System.Threading.Tasks; namespace LifePayment.Domain.Shared; @@ -136,10 +131,31 @@ /// 澶╃劧姘斿叕鍙哥被鍨� /// </summary> [JsonProperty("gasParValue")] - public GasParValueOutput GasParValue { get; set; } + public List<GasParValueOutput> GasParValue { get; set; } + +} +public class GasOrgTypeValueResponse : ACOOLYRequestBaseResponse +{ + /// <summary> + /// 澶╃劧姘斿叕鍙哥被鍨� + /// </summary> + [JsonProperty("gasSupportMerchantInfos")] + public List<GasSupportMerchantInfos> GasSupportMerchantInfos { get; set; } } +public class GasSupportMerchantInfos +{ + /// <summary> + /// 鐕冩皵鏀寔鍟嗘埛缂栫爜 + /// </summary> + public string gasOrgTypeCode { get; set; } + + /// <summary> + /// 鐕冩皵鏀寔鍟嗘埛鍚嶇О + /// </summary> + public string gasOrgTypeName { get; set; } +} /// <summary> /// 鐕冩皵闈㈠�兼暟鎹� /// </summary> -- Gitblit v1.9.1