NewGaoKaoApi/PaymentSDK/AliPay/Domain/KmsBakingCheckDTO.cs

37 lines
924 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>
/// KmsBakingCheckDTO Data Structure.
/// </summary>
[Serializable]
public class KmsBakingCheckDTO : AopObject
{
/// <summary>
/// 回传结束时间格式yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 回传起始时间格式yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 回传数量
/// </summary>
[XmlElement("sync_count")]
public string SyncCount { get; set; }
/// <summary>
/// 回传日期格式yyyy-MM-dd
/// </summary>
[XmlElement("sync_time")]
public string SyncTime { get; set; }
}
}