37 lines
809 B
C#
37 lines
809 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// PracticeEntity Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class PracticeEntity : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 做法id
|
|
/// </summary>
|
|
[XmlElement("id")]
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户id
|
|
/// </summary>
|
|
[XmlElement("merchant_id")]
|
|
public string MerchantId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 做法名称
|
|
/// </summary>
|
|
[XmlElement("practice_name")]
|
|
public string PracticeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 门店id
|
|
/// </summary>
|
|
[XmlElement("shop_id")]
|
|
public string ShopId { get; set; }
|
|
}
|
|
}
|