NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsUnderwriteMutualPo...

37 lines
936 B
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>
/// AlipayInsUnderwriteMutualPolicyBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsUnderwriteMutualPolicyBatchqueryModel : AopObject
{
/// <summary>
/// 渠道来源
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 计划ID宝贝计划(BAOBEI_PLAN)
/// </summary>
[XmlElement("plan_no")]
public string PlanNo { get; set; }
/// <summary>
/// 来源,如支付宝客户端(MOBILE_APP)
/// </summary>
[XmlElement("source")]
public string Source { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}