using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// RecruitTool Data Structure.
///
[Serializable]
public class RecruitTool : AopObject
{
///
/// 招商结束时间
///
[JsonProperty("end_time")]
public string EndTime { get; set; }
///
/// 如果这个值是true,那么活动的参与门店不需要招商
///
[JsonProperty("exclude_constraint_shops")]
public bool ExcludeConstraintShops { get; set; }
///
/// 招商pid和pid对应的门店列表(对于品牌商,此字段必填,活动和券的适用门店为空。对于商圈,此字段需为空,门店需要填在活动和券的适用门店上)
///
[JsonProperty("pid_shops")]
public List PidShops { get; set; }
///
/// 招商开始时间
///
[JsonProperty("start_time")]
public string StartTime { get; set; }
}
}