NewGaoKaoApi/PaymentSDK/AliPay/Domain/ItemStoreDTO.cs

49 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;
namespace Aop.Api.Domain
{
/// <summary>
/// ItemStoreDTO Data Structure.
/// </summary>
[Serializable]
public class ItemStoreDTO : AopObject
{
/// <summary>
/// 门店品牌名称
/// </summary>
[XmlElement("brand_name")]
public string BrandName { get; set; }
/// <summary>
/// 门店类目信息 英文分隔符,隔开 示例:美食,火锅,川菜/重庆火锅
/// </summary>
[XmlElement("category_name")]
public string CategoryName { get; set; }
/// <summary>
/// 门店地址
/// </summary>
[XmlElement("store_address")]
public string StoreAddress { get; set; }
/// <summary>
/// 门店ID
/// </summary>
[XmlElement("store_id")]
public string StoreId { get; set; }
/// <summary>
/// 门店LOGO
/// </summary>
[XmlElement("store_logo")]
public string StoreLogo { get; set; }
/// <summary>
/// 门店名称
/// </summary>
[XmlElement("store_name")]
public string StoreName { get; set; }
}
}