| | |
| | | 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; |
| | | |
| | |
| | | /// 天然气公司类型 |
| | | /// </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> |