You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.4 KiB
C#
88 lines
2.4 KiB
C#
using System.Runtime.Serialization;
|
|
using SqlSugar;
|
|
|
|
namespace SlnMesnac.Model.domain
|
|
{
|
|
/// <summary>
|
|
/// WMS 出库记录反馈
|
|
/// </summary>
|
|
[SugarTable("I_TASKOUT_FEEDBACK_TO_MES"), TenantAttribute("wms")]
|
|
[DataContract(Name = "WmsTaskOut WMS 出库记录反馈")]
|
|
public class WmsTaskOut
|
|
{
|
|
[SugarColumn(ColumnName = "OBJ_ID", IsPrimaryKey = true, IsIdentity = true)]
|
|
public int OBJ_ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ORDER_NO")]
|
|
public string OrderNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 订单行号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ORDER_LINE_NO")]
|
|
public string OrderLineNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 单据类型
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ORDER_TYPE_NO")]
|
|
public string OrderTypeNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 库位号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BIN_NO")]
|
|
public string BinNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "TASK_NO")]
|
|
public string TaskNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 起始位置
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SLOC_NO")]
|
|
public string SlocNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目的位置
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "ELOC_NO")]
|
|
public string ElocNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务数量
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PRODUCT_QTY")]
|
|
public decimal ProductQty { get; set; }
|
|
|
|
/// <summary>
|
|
/// 批次号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "BATCH_NO")]
|
|
public string BatchNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料编码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "MATER_NO")]
|
|
public string MaterNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 托盘号
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "PALLET_NO")]
|
|
public string PalletNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 标签唯一码
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "SERIAL_NUM")]
|
|
public string SerialNum { get; set; }
|
|
}
|
|
} |