忽略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,42 +0,0 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// RecruitInfo Data Structure.
/// </summary>
[Serializable]
public class RecruitInfo : AopObject
{
/// <summary>
/// 招商结束时间
/// </summary>
[JsonProperty("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 是否参与门店参与了招商
/// </summary>
[JsonProperty("exclude_constraint_shops")]
public bool ExcludeConstraintShops { get; set; }
/// <summary>
/// 招商方案id
/// </summary>
[JsonProperty("plan_id")]
public string PlanId { get; set; }
/// <summary>
/// 招商开始时间
/// </summary>
[JsonProperty("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 招商状态
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
}
}