31 lines
722 B
C#
31 lines
722 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiCateringPosMaterialCreateModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiCateringPosMaterialCreateModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 配料名称
|
|
/// </summary>
|
|
[XmlElement("material_name")]
|
|
public string MaterialName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 售价
|
|
/// </summary>
|
|
[XmlElement("sell_price")]
|
|
public string SellPrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户门店id
|
|
/// </summary>
|
|
[XmlElement("shop_id")]
|
|
public string ShopId { get; set; }
|
|
}
|
|
}
|