89 lines
2.2 KiB
C#
89 lines
2.2 KiB
C#
namespace RB_MES_APICore.Models.Pangu
|
|
{
|
|
/// <summary>
|
|
/// 其它收料单实体
|
|
/// </summary>
|
|
public class R175C
|
|
{
|
|
/// <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 SRTYPE_ID { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 批次
|
|
/// </summary>
|
|
public string ERP_LOTNO { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 部门
|
|
/// </summary>
|
|
public string DEPT_ID { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 辅助属性
|
|
/// </summary>
|
|
public string MTRL_VER { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 申请人
|
|
/// </summary>
|
|
public string ORDER_USER { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 项目编号#
|
|
/// </summary>
|
|
public string PM_ID { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 项目名称#
|
|
/// </summary>
|
|
public string PM_NAME { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 项目经理#
|
|
/// </summary>
|
|
public string PM_M { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// 项目阶段#
|
|
/// </summary>
|
|
public string PM_STATUS { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// OA流程号#
|
|
/// </summary>
|
|
public string OA_ID { get; set; } = string.Empty;
|
|
}
|
|
}
|