18 lines
536 B
C#
18 lines
536 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoMycarMaintainOrderCreateResponse.
|
||
/// </summary>
|
||
public class AlipayEcoMycarMaintainOrderCreateResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 业务订单编号,规则28位;yyMMddHHmmss +  行业标识3位+模块标识2位 +uid(后六位) +序列值(5位)
|
||
/// </summary>
|
||
[XmlElement("order_no")]
|
||
public string OrderNo { get; set; }
|
||
}
|
||
}
|