NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceMedicalInstca...

37 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayCommerceMedicalInstcardBindModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceMedicalInstcardBindModel : AopObject
{
/// <summary>
/// 区域编码,使用国家行政区划代码,可参看 http://www.stats.gov.cn/tjsj/tjbz/xzqhdm
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 业务扩展参数 sys_service_provider_id:返佣商户标记 serial_no:商户业务序列号 return_params:外部商户提交给支付宝处理的请求参数,支付宝在整个处理过程中携带此参数。
/// </summary>
[XmlElement("extend_params")]
public string ExtendParams { get; set; }
/// <summary>
/// 机构编号
/// </summary>
[XmlElement("ins_code")]
public string InsCode { get; set; }
/// <summary>
/// 支付宝处理完请求后如验证成功当前页面自动跳转到商户网站里指定页面的http路径。
/// </summary>
[XmlElement("return_url")]
public string ReturnUrl { get; set; }
}
}