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