Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

25 lines
783 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// ScheduleInfo Data Structure.
/// </summary>
[Serializable]
public class ScheduleInfo : AopObject
{
/// <summary>
/// 根据定义的间隔长度跟单位将date的时间切分例如将2016-11-29整天按30分钟为一段切分为48段 111111111111111111111111111111111110000011111111
/// 其中0表示不可用1表示可用
/// </summary>
[JsonProperty("bitmap")]
public string Bitmap { get; set; }
/// <summary>
/// 时间默认YYYY-MM-DD格式如果是单位是月就填写YYYY-01-01格式如果单位是周和日就是YYYY-MM-01格式
/// </summary>
[JsonProperty("date")]
public string Date { get; set; }
}
}