NewGaoKaoApi/PaymentSDK/AliPay/Domain/RestTime.cs

37 lines
966 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>
/// RestTime Data Structure.
/// </summary>
[Serializable]
public class RestTime : AopObject
{
/// <summary>
/// 扩展参数json格式由双方约定取值
/// </summary>
[XmlElement("ext_param")]
public string ExtParam { get; set; }
/// <summary>
/// 休息时间段结束时刻hh24:mi:ss
/// </summary>
[XmlElement("rest_end_time")]
public string RestEndTime { get; set; }
/// <summary>
/// 休息时间段开始时刻hh24:mi:ss
/// </summary>
[XmlElement("rest_start_time")]
public string RestStartTime { get; set; }
/// <summary>
/// 该时间段内的休息时长,单位:分钟
/// </summary>
[XmlElement("rest_time")]
public long RestTime_ { get; set; }
}
}