NewGaoKaoApi/PaymentSDK/AliPay/Domain/RecruitTool.cs

39 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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