using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// KoubeiServindustryPromoIntelligentguideOrderModel Data Structure.
///
[Serializable]
public class KoubeiServindustryPromoIntelligentguideOrderModel : AopObject
{
///
/// 枚举类型,目前仅支持半年(HALF_YEAR)和一年(ONE_YEAR),使用前先确认是否有相对应的份额
///
[XmlElement("range_type")]
public string RangeType { get; set; }
///
/// 口碑侧门店shopId
///
[XmlArray("shop_id")]
[XmlArrayItem("string")]
public List ShopId { get; set; }
}
}