using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ProductOrderDTO Data Structure.
///
[Serializable]
public class ProductOrderDTO : AopObject
{
///
/// 生效时间
///
[XmlElement("active_datetime")]
public string ActiveDatetime { get; set; }
///
/// 失效时间
///
[XmlElement("inactive_datetime")]
public string InactiveDatetime { get; set; }
///
/// 订购编号
///
[XmlElement("order_id")]
public string OrderId { get; set; }
///
/// 订购者支付宝ID
///
[XmlElement("order_user_id")]
public string OrderUserId { get; set; }
///
/// 订购平台
///
[XmlElement("ordered_channel")]
public string OrderedChannel { get; set; }
///
/// 申请时间
///
[XmlElement("ordering_datetime")]
public string OrderingDatetime { get; set; }
///
/// 外部商户ID
///
[XmlElement("out_merchant_id")]
public string OutMerchantId { get; set; }
///
/// 产品名称
///
[XmlElement("prod_name")]
public string ProdName { get; set; }
///
/// 产品码
///
[XmlElement("ps_code")]
public string PsCode { get; set; }
///
/// 合约状态
///
[XmlElement("status")]
public string Status { get; set; }
}
}