Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/RecruitTool.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

38 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// RecruitTool Data Structure.
/// </summary>
[Serializable]
public class RecruitTool : AopObject
{
/// <summary>
/// 招商结束时间
/// </summary>
[JsonProperty("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 如果这个值是true,那么活动的参与门店不需要招商
/// </summary>
[JsonProperty("exclude_constraint_shops")]
public bool ExcludeConstraintShops { get; set; }
/// <summary>
/// 招商pid和pid对应的门店列表对于品牌商此字段必填活动和券的适用门店为空。对于商圈此字段需为空门店需要填在活动和券的适用门店上
/// </summary>
[JsonProperty("pid_shops")]
public List<PidShopInfo> PidShops { get; set; }
/// <summary>
/// 招商开始时间
/// </summary>
[JsonProperty("start_time")]
public string StartTime { get; set; }
}
}