25 lines
700 B
C#
25 lines
700 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayCommerceTransportVehicleownerBizruleMatchModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayCommerceTransportVehicleownerBizruleMatchModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 请求规则匹配的业务实体
|
|
/// </summary>
|
|
[XmlElement("biz_entity")]
|
|
public string BizEntity { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车主业务类型,目前包括: PARKING - 停车 HIGHWAY - 高速 REFUELING - 加油
|
|
/// </summary>
|
|
[XmlElement("biz_type")]
|
|
public string BizType { get; set; }
|
|
}
|
|
}
|