31 lines
704 B
C#
31 lines
704 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiCateringPosStallrepairModifyModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiCateringPosStallrepairModifyModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 菜品id
|
|
/// </summary>
|
|
[XmlElement("dish_id")]
|
|
public string DishId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 门店id
|
|
/// </summary>
|
|
[XmlElement("shop_id")]
|
|
public string ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 档口id
|
|
/// </summary>
|
|
[XmlElement("stall_id")]
|
|
public string StallId { get; set; }
|
|
}
|
|
}
|