37 lines
836 B
C#
37 lines
836 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiMallEventSendModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiMallEventSendModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 业务号
|
|
/// </summary>
|
|
[XmlElement("biz_id")]
|
|
public string BizId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 事件业务数据
|
|
/// </summary>
|
|
[XmlElement("data")]
|
|
public string Data { get; set; }
|
|
|
|
/// <summary>
|
|
/// 事件码
|
|
/// </summary>
|
|
[XmlElement("event_code")]
|
|
public string EventCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 产品码
|
|
/// </summary>
|
|
[XmlElement("product_code")]
|
|
public string ProductCode { get; set; }
|
|
}
|
|
}
|