131 lines
3.4 KiB
C#
131 lines
3.4 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
using System.Collections.Generic;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// KbAdvertSubjectVoucherResponse Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class KbAdvertSubjectVoucherResponse : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 品牌名称
|
||
/// </summary>
|
||
[XmlElement("brand_name")]
|
||
public string BrandName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 适用城市ID列表
|
||
/// </summary>
|
||
[XmlArray("city_ids")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> CityIds { get; set; }
|
||
|
||
/// <summary>
|
||
/// 背景图片
|
||
/// </summary>
|
||
[XmlElement("cover")]
|
||
public string Cover { get; set; }
|
||
|
||
/// <summary>
|
||
/// 日库存
|
||
/// </summary>
|
||
[XmlElement("daily_inventory")]
|
||
public string DailyInventory { get; set; }
|
||
|
||
/// <summary>
|
||
/// 结束时间
|
||
/// </summary>
|
||
[XmlElement("gmt_end")]
|
||
public string GmtEnd { get; set; }
|
||
|
||
/// <summary>
|
||
/// 上架时间
|
||
/// </summary>
|
||
[XmlElement("gmt_start")]
|
||
public string GmtStart { get; set; }
|
||
|
||
/// <summary>
|
||
/// logo图片
|
||
/// </summary>
|
||
[XmlElement("logo")]
|
||
public string Logo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 使用须知
|
||
/// </summary>
|
||
[XmlArray("manuals")]
|
||
[XmlArrayItem("kbadvert_voucher_manual")]
|
||
public List<KbadvertVoucherManual> Manuals { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商家名称
|
||
/// </summary>
|
||
[XmlElement("merchant_name")]
|
||
public string MerchantName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户ID
|
||
/// </summary>
|
||
[XmlElement("partner_id")]
|
||
public string PartnerId { get; set; }
|
||
|
||
/// <summary>
|
||
/// BUY:购买模式 OBTAIN:认领
|
||
/// </summary>
|
||
[XmlElement("purchase_mode")]
|
||
public string PurchaseMode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 门店ID列表
|
||
/// </summary>
|
||
[XmlArray("shop_ids")]
|
||
[XmlArrayItem("string")]
|
||
public List<string> ShopIds { get; set; }
|
||
|
||
/// <summary>
|
||
/// 起步金额
|
||
/// </summary>
|
||
[XmlElement("threshold_amount")]
|
||
public string ThresholdAmount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 总库存
|
||
/// </summary>
|
||
[XmlElement("total_inventory")]
|
||
public string TotalInventory { get; set; }
|
||
|
||
/// <summary>
|
||
/// 券ID
|
||
/// </summary>
|
||
[XmlElement("voucher_id")]
|
||
public string VoucherId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 券名称
|
||
/// </summary>
|
||
[XmlElement("voucher_name")]
|
||
public string VoucherName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 以元为单位
|
||
/// </summary>
|
||
[XmlElement("voucher_org_value")]
|
||
public string VoucherOrgValue { get; set; }
|
||
|
||
/// <summary>
|
||
/// 券类型 LIMIT-单品券 NO_LIMIT_DISCOUNT-全场折扣券 NO_LIMIT_CASH-全场代金券
|
||
/// </summary>
|
||
[XmlElement("voucher_type")]
|
||
public string VoucherType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 券价值
|
||
/// </summary>
|
||
[XmlElement("voucher_value")]
|
||
public string VoucherValue { get; set; }
|
||
}
|
||
}
|