NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsSceneHealthActivit...

49 lines
1.3 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>
/// AlipayInsSceneHealthActivitySyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsSceneHealthActivitySyncModel : AopObject
{
/// <summary>
/// 活动编号参数比如01
/// </summary>
[XmlElement("activity_no")]
public string ActivityNo { get; set; }
/// <summary>
/// 申请编号
/// </summary>
[XmlElement("apply_no")]
public string ApplyNo { get; set; }
/// <summary>
/// 业务数据,比如邮寄信息,结果信息等
/// </summary>
[XmlElement("biz_data")]
public string BizData { get; set; }
/// <summary>
/// 订单编号唯一幂等校验
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 状态参数比如0初始状态1完成状态
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}