using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// RestTime Data Structure. /// [Serializable] public class RestTime : AopObject { /// /// 扩展参数,json格式,由双方约定取值 /// [XmlElement("ext_param")] public string ExtParam { get; set; } /// /// 休息时间段结束时刻(hh24:mi:ss) /// [XmlElement("rest_end_time")] public string RestEndTime { get; set; } /// /// 休息时间段开始时刻(hh24:mi:ss) /// [XmlElement("rest_start_time")] public string RestStartTime { get; set; } /// /// 该时间段内的休息时长,单位:分钟 /// [XmlElement("rest_time")] public long RestTime_ { get; set; } } }