忽略dll文件git

This commit is contained in:
“wanyongkang”
2023-07-29 10:19:42 +08:00
parent 7f97317bcc
commit b562aba2b1
3868 changed files with 63608 additions and 385427 deletions

View File

@@ -1,32 +0,0 @@
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// CalendarScheduleInfo Data Structure.
/// </summary>
[Serializable]
public class CalendarScheduleInfo : AopObject
{
/// <summary>
/// 时间分段时长字段unit为单位如duration=30unit=MIN则表示二进制的时间表表示将一天分为30分钟一小段的时间片段用来表示服务者的时间是否可用
/// </summary>
[JsonProperty("duration")]
public long Duration { get; set; }
/// <summary>
/// 服务者的服务时间表
/// </summary>
[JsonProperty("schedule")]
public List<ScheduleInfo> Schedule { get; set; }
/// <summary>
/// 间隔长度单位默认为MIN分钟允许的单位有DAY、WEEK、MONTH(月)
/// </summary>
[JsonProperty("unit")]
public string Unit { get; set; }
}
}