NewGaoKaoApi/PaymentSDK/AliPay/Domain/OrderLogisticsExtInfo.cs

25 lines
628 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// OrderLogisticsExtInfo Data Structure.
/// </summary>
[Serializable]
public class OrderLogisticsExtInfo : AopObject
{
/// <summary>
/// 服务结束时间格式为yyyy-MM-dd HH:mm到分
/// </summary>
[XmlElement("gmt_end")]
public string GmtEnd { get; set; }
/// <summary>
/// 服务开始时间格式为yyyy-MM-dd HH:mm到分
/// </summary>
[XmlElement("gmt_start")]
public string GmtStart { get; set; }
}
}