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