using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// RecruitInfo Data Structure. /// [Serializable] public class RecruitInfo : AopObject { /// /// 招商结束时间 /// [JsonProperty("end_time")] public string EndTime { get; set; } /// /// 是否参与门店参与了招商 /// [JsonProperty("exclude_constraint_shops")] public bool ExcludeConstraintShops { get; set; } /// /// 招商方案id /// [JsonProperty("plan_id")] public string PlanId { get; set; } /// /// 招商开始时间 /// [JsonProperty("start_time")] public string StartTime { get; set; } /// /// 招商状态 /// [JsonProperty("status")] public string Status { get; set; } } }