31 lines
686 B
C#
31 lines
686 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// MaterialEntity Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MaterialEntity : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 配料id
|
|
/// </summary>
|
|
[XmlElement("material_id")]
|
|
public string MaterialId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 配料名称
|
|
/// </summary>
|
|
[XmlElement("material_name")]
|
|
public string MaterialName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 加价金额
|
|
/// </summary>
|
|
[XmlElement("sell_price")]
|
|
public string SellPrice { get; set; }
|
|
}
|
|
}
|