Files
RBMESAPICore/Models/Pangu/RO-VMI.cs

25 lines
810 B
C#
Raw Normal View History

2025-09-09 22:41:29 +08:00
namespace RB_MES_APICore.Models.Pangu
{
/// <summary>
/// VMI收料单实体
/// </summary>
public class RO_VMI
{
public string QUEUE_ID { get; set; }
public string TRX_DATE { get; set; }
public string RO_ID { get; set; }
public string RO_DATE { get; set; }
public string RO_SEQ { get; set; }
public string STORE_ID { get; set; }
public string SUP_ID { get; set; }
public string PO_ID { get; set; }
public string PO_SEQ { get; set; }
public string MTRL_ID { get; set; }
public string QUANTITY { get; set; }
public string REMARK { get; set; }
public string ERP_LOTNO { get; set; }
//public string STORELOC_ID { get; set; }
public string MTRL_VER { get; set; }
}
}