22 lines
657 B
C#
22 lines
657 B
C#
|
|
namespace RB_MES_APICore.Models.Pangu
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 客退品收料单实体
|
|||
|
|
/// </summary>
|
|||
|
|
public class R172C
|
|||
|
|
{
|
|||
|
|
public string QUEUE_ID { get; set; }
|
|||
|
|
public string TRX_DATE { get; set; }
|
|||
|
|
public string STORE_ID { get; set; }
|
|||
|
|
public string AUDIT_ID { get; set; }
|
|||
|
|
public string AUDIT_SEQ { get; set; }
|
|||
|
|
public string MTRL_ID { get; set; }
|
|||
|
|
public string QUANTITY { get; set; }
|
|||
|
|
public string REMARK { get; set; }
|
|||
|
|
/// 批号
|
|||
|
|
/// </summary>
|
|||
|
|
public string ERP_LOTNO { get; set; } = string.Empty;
|
|||
|
|
public string MTRL_VER { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|