using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayBossOrderApplyModel Data Structure.
///
[Serializable]
public class AlipayBossOrderApplyModel : AopObject
{
///
/// synchronize
///
[XmlElement("operation_type")]
public string OperationType { get; set; }
///
/// 订单号
///
[XmlElement("order_no")]
public string OrderNo { get; set; }
///
/// 订单类型
///
[XmlElement("order_type")]
public string OrderType { get; set; }
}
}