NewGaoKaoApi/PaymentSDK/AliPay/Domain/ScheduleInfo.cs

25 lines
837 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>
/// ScheduleInfo Data Structure.
/// </summary>
[Serializable]
public class ScheduleInfo : AopObject
{
/// <summary>
/// 根据定义的间隔长度跟单位将date的时间切分例如将2016-11-29整天按30分钟为一段切分为48段 111111111111111111111111111111111110000011111111 其中0表示不可用1表示可用
/// </summary>
[XmlElement("bitmap")]
public string Bitmap { get; set; }
/// <summary>
/// 时间默认YYYY-MM-DD格式如果是单位是月就填写YYYY-01-01格式如果单位是周和日就是YYYY-MM-01格式
/// </summary>
[XmlElement("date")]
public string Date { get; set; }
}
}