25 lines
549 B
C#
25 lines
549 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// IntelligentPromoShopSummaryInfo Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class IntelligentPromoShopSummaryInfo : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 门店id
|
|
/// </summary>
|
|
[XmlElement("shop_id")]
|
|
public string ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 全店名
|
|
/// </summary>
|
|
[XmlElement("shop_name")]
|
|
public string ShopName { get; set; }
|
|
}
|
|
}
|