67 lines
1.6 KiB
C#
67 lines
1.6 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AccessProduceOrder Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AccessProduceOrder : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 口碑码批次号
|
|
/// </summary>
|
|
[XmlElement("batch_id")]
|
|
public string BatchId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生产单标识
|
|
/// </summary>
|
|
[XmlElement("produce_order_id")]
|
|
public string ProduceOrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 生产数量
|
|
/// </summary>
|
|
[XmlElement("produce_quantity")]
|
|
public long ProduceQuantity { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料属性名称
|
|
/// </summary>
|
|
[XmlElement("stuff_attr_name")]
|
|
public string StuffAttrName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料材质
|
|
/// </summary>
|
|
[XmlElement("stuff_material")]
|
|
public string StuffMaterial { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料尺寸
|
|
/// </summary>
|
|
[XmlElement("stuff_size")]
|
|
public string StuffSize { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料类型
|
|
/// </summary>
|
|
[XmlElement("stuff_type")]
|
|
public string StuffType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模板唯一标识
|
|
/// </summary>
|
|
[XmlElement("template_id")]
|
|
public string TemplateId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模板名称
|
|
/// </summary>
|
|
[XmlElement("template_name")]
|
|
public string TemplateName { get; set; }
|
|
}
|
|
}
|