忽略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,25 +0,0 @@
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; }
}
}