37 lines
932 B
C#
37 lines
932 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcoMycarDataExternalQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEcoMycarDataExternalQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// external_system_name
|
|
/// </summary>
|
|
[XmlElement("external_system_name")]
|
|
public string ExternalSystemName { get; set; }
|
|
|
|
/// <summary>
|
|
/// is_transfer_uid
|
|
/// </summary>
|
|
[XmlElement("is_transfer_uid")]
|
|
public bool IsTransferUid { get; set; }
|
|
|
|
/// <summary>
|
|
/// operate_type
|
|
/// </summary>
|
|
[XmlElement("operate_type")]
|
|
public string OperateType { get; set; }
|
|
|
|
/// <summary>
|
|
/// query_condition
|
|
/// </summary>
|
|
[XmlElement("query_condition")]
|
|
public string QueryCondition { get; set; }
|
|
}
|
|
}
|