16 lines
485 B
C#
16 lines
485 B
C#
using Newtonsoft.Json;
|
||
|
||
namespace Alipay.AopSdk.Core.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoMycarMaintainOrderCreateResponse.
|
||
/// </summary>
|
||
public class AlipayEcoMycarMaintainOrderCreateResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 业务订单编号,规则28位;yyMMddHHmmss +  行业标识3位+模块标识2位 +uid(后六位) +序列值(5位)
|
||
/// </summary>
|
||
[JsonProperty("order_no")]
|
||
public string OrderNo { get; set; }
|
||
}
|
||
} |