25 lines
520 B
C#
25 lines
520 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ErrorDishEntity Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ErrorDishEntity : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 菜品id
|
|
/// </summary>
|
|
[XmlElement("dish_id")]
|
|
public string DishId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 菜品名称
|
|
/// </summary>
|
|
[XmlElement("dish_name")]
|
|
public string DishName { get; set; }
|
|
}
|
|
}
|