24 lines
1.0 KiB
C#
24 lines
1.0 KiB
C#
namespace RB_MES_API.Models.Pangu
|
|
{
|
|
/// <summary>
|
|
/// 盘古系统推过来的采购入库单,源单为采购订单的通用此类
|
|
/// </summary>
|
|
public class R170C
|
|
{
|
|
public string QUEUE_ID { get; set; } = string.Empty;
|
|
public string TRX_DATE { get; set; } = string.Empty;
|
|
public string STORE_ID { get; set; } = string.Empty;
|
|
public string SUP_ID { get; set; } = string.Empty;
|
|
public string PO_ID { get; set; } = string.Empty;
|
|
public string PO_SEQ { get; set; } = string.Empty;
|
|
public string MTRL_ID { get; set; } = string.Empty;
|
|
public string UNIT_ID { get; set; } = string.Empty;
|
|
public string QUANTITY { get; set; } = string.Empty;
|
|
public string REMARK { get; set; } = string.Empty;
|
|
public string ERP_LOTNO { get; set; } = string.Empty;
|
|
public string RO_ID { get; set; } = string.Empty;
|
|
public string MTRL_VER { get; set; } = string.Empty;
|
|
public string ASN_ID { get; set; } = string.Empty;
|
|
}
|
|
}
|