123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Xml.Serialization;
- using Aop.Api.Domain;
- namespace Aop.Api.Response
- {
- /// <summary>
- /// AlipayEbppRechargeSaleproductGetResponse.
- /// </summary>
- public class AlipayEbppRechargeSaleproductGetResponse : AopResponse
- {
- /// <summary>
- /// 错误码
- /// </summary>
- [XmlElement("error_code")]
- public string ErrorCode { get; set; }
- /// <summary>
- /// 错误描述
- /// </summary>
- [XmlElement("error_msg")]
- public string ErrorMsg { get; set; }
- /// <summary>
- /// 是否成功
- /// </summary>
- [XmlElement("is_success")]
- public string IsSuccess { get; set; }
- /// <summary>
- /// 充值模型
- /// </summary>
- [XmlElement("recharge_model")]
- public RechargeModel RechargeModel { get; set; }
- }
- }
|