lingling
2025-04-16 d0558ff1687a1bffd62c45660d4bab3132643039
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>
@@ -455,6 +471,12 @@
    [JsonProperty("parValue")]
    public decimal ParValue { get; set; }
    /// <summary>
    /// 实际到账金额。
    /// </summary>
    [JsonProperty("actualParValue")]
    public decimal ActualParValue { get; set; }
    /// <summary>
    /// 实际扣款金额,单位为元。
    /// </summary>
@@ -473,6 +495,12 @@
    [JsonProperty("statusText")]
    public string StatusText { get; set; }
    /// <summary>
    /// 通知消息
    /// </summary>
    [JsonProperty("responseMessage")]
    public string ResponseMessage {  get; set; }
}
/// <summary>