lingling
2025-03-14 70c08d5a565139b440b73d8b9d9c8c20c7942cd6
LifePayment/LifePayment.Domain.Shared/ACOOLY/ACOOLYOutput.cs
@@ -1,10 +1,5 @@
using 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>