纽威
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.
 
 
 
 
 

99 lines
2.7 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ICSSoft.Entity
{
public class LOTStockDownHGModel
{
public string GUID { get; set; }
public LOTStockDownHGALLModel DATA { get; set; }
public string TransactionStatus { get; set; }
}
public class LOTStockDownHGALLModel
{
public List<LOTStockDownHGHeadModel> EXP_ORDINI { get; set; }
public List<LOTStockDownHGModelList> EXP_ORDINI_RIGHE_STO { get; set; }
}
public class LOTStockDownHGHeadModel
{
/// <summary>
/// 源头单据号
/// </summary>
public string ORD_ORDINE { get; set; }//TransCode
/// <summary>
/// 操作类型
/// </summary>
public string ORD_DES { get; set; }//TransType
/// <summary>
/// 操作时间
/// </summary>
public string MTime { get; set; }
public string ORD_CLIENTE { get; set; }//WorkPoint
public string Head_Id { get; set; }
}
public class LOTStockDownHGModelList
{
/// <summary>
/// 操作人
/// </summary>
public string STO_EXE_OPERATORE { get; set; }//User
/// <summary>
/// 源头单据号
/// </summary>
public string STO_ORDINE { get; set; }//TransCode
/// <summary>
/// 源头单据行号
/// </summary>
public string STO_HOSTINF { get; set; }//TransSequence
/// <summary>
/// 数量
/// </summary>
public string STO_QTAR { get; set; }//Quantity
/// <summary>
/// 辅计量数量
/// </summary>
public string RIG_NOTE_STAMPA { get; set; }//Amount
/// <summary>
/// 条码
/// </summary>
public string STO_EFF_SUB1 { get; set; }//LotNo
/// <summary>
/// 数量
/// </summary>
public string STO_EFF_QTA { get; set; }//CurrentQuantity
/// <summary>
/// 货柜机器号(货柜编码)
/// </summary>
public string STO_CORRIDOIO { get; set; }
/// <summary>
/// 辅计量数量
/// </summary>
public string CurrentAmount { get; set; }
public string Sequence { get; set; }
/// <summary>
/// 仓库代码
/// </summary>
public string WarehouseCode { get; set; }
/// <summary>
/// 库位代码
/// </summary>
public string LocationCode { get; set; }
public string Head_Id { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public string STO_EFF_ARTICOLO { get; set; }
}
}