Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayDaoweiSpScheduleModifyModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

25 lines
1.1 KiB
C#
Raw 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>
/// AlipayDaoweiSpScheduleModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDaoweiSpScheduleModifyModel : AopObject
{
/// <summary>
/// 服务者的可用时间表。其中Duration和Unit配合使用例如duration=30unit=MIN表示将一天分为以30分钟一小段的时间片段。Unit目前支持MIN分钟。DateYYYY-MM-DD格式。Bitmap根据定义的间隔长度跟单位将date的时间切分例如将2016-11-29整天按30分钟为一段切分为48段
/// 111111111111111111111111111111111110000011111111 其中0表示不可用1表示可用如果工作日全天可用则每个分段都为1
/// </summary>
[JsonProperty("calendar_schedule")]
public CalendarScheduleInfo CalendarSchedule { get; set; }
/// <summary>
/// 商家服务者id由商家维护的该商家下某个服务者的唯一标识仅支持数字、字母和下划线的组合
/// </summary>
[JsonProperty("out_sp_id")]
public string OutSpId { get; set; }
}
}