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