NewGaoKaoApi/PaymentSDK/AliPay/Domain/FrontCategoryInfo.cs

63 lines
1.6 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>
/// FrontCategoryInfo Data Structure.
/// </summary>
[Serializable]
public class FrontCategoryInfo : AopObject
{
/// <summary>
/// 前台类目描述
/// </summary>
[XmlElement("description")]
public string Description { get; set; }
/// <summary>
/// 前台类目ID
/// </summary>
[XmlElement("front_category_id")]
public string FrontCategoryId { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[XmlElement("gmt_modified")]
public string GmtModified { get; set; }
/// <summary>
/// 素材列表
/// </summary>
[XmlArray("material_list")]
[XmlArrayItem("material_info")]
public List<MaterialInfo> MaterialList { get; set; }
/// <summary>
/// 前台类目名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 商品归属主体ID 例商品归属主体类型为店铺则商品归属主体ID为店铺ID
/// </summary>
[XmlElement("target_id")]
public string TargetId { get; set; }
/// <summary>
/// 商品归属主体类型: 5店铺
/// </summary>
[XmlElement("target_type")]
public string TargetType { get; set; }
}
}