You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
739 B
37 lines
739 B
using System;
|
|
|
|
namespace XS_Model
|
|
{
|
|
/// <summary>
|
|
/// 码垛信息实体类
|
|
/// </summary>
|
|
[Serializable]
|
|
public class IO_INTERFACE_PALLET
|
|
{
|
|
|
|
/// <summary>
|
|
/// 垛型编号
|
|
/// </summary>
|
|
public int taskId { get; set; }
|
|
/// <summary>
|
|
/// 物料编码
|
|
/// </summary>
|
|
public string productCode { get; set; }
|
|
/// <summary>
|
|
/// 码垛排
|
|
/// </summary>
|
|
public string palletArrangePlatoon { get; set; }
|
|
/// <summary>
|
|
/// 码垛列
|
|
/// </summary>
|
|
public string palletArrangeLie { get; set; }
|
|
/// <summary>
|
|
/// 码垛层
|
|
/// </summary>
|
|
public string palletArrangeStorey { get; set; }
|
|
/// <summary>
|
|
/// 码垛袋数
|
|
/// </summary>
|
|
public int qty { get; set; }
|
|
}
|
|
}
|