This commit is contained in:
yuyubohh
2025-09-09 22:41:29 +08:00
commit e8494ba988
798 changed files with 252381 additions and 0 deletions

45
Models/Pangu/R024.cs Normal file
View File

@@ -0,0 +1,45 @@
namespace RB_MES_APICore.Models.Pangu
{
/// <summary>
/// 盘点盘亏单实体
/// </summary>
public class R024
{
/// <summary>
/// 唯一序号
/// </summary>
public string QUEUE_ID { get; set; } = string.Empty;
/// <summary>
/// 交易时间
/// </summary>
public string TRX_DATE { get; set; } = string.Empty;
/// <summary>
/// 仓库编码
/// </summary>
public string STORE_ID { get; set; } = string.Empty;
/// <summary>
/// 物料编码
/// </summary>
public string MTRL_ID { get; set; } = string.Empty;
/// <summary>
/// 数量
/// </summary>
public string QUANTITY { get; set; } = string.Empty;
/// <summary>
/// 备注
/// </summary>
public string REMARK { get; set; } = string.Empty;
/// <summary>
/// 批次
/// </summary>
public string ERP_LOTNO { get; set; } = string.Empty;
/// <summary>
/// 储位
/// </summary>
//public string STORELOC_ID { get; set; } = string.Empty;
/// <summary>
/// 辅助属性
/// </summary>
public string MTRL_VER { get; set; } = string.Empty;
}
}