You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

55 lines
1.2 KiB

using System;
using System.ComponentModel.DataAnnotations;
using Volo.Abp.Domain.Entities;
namespace Win_in.Sfs.Wms.DataExchange.Domain.Fawtyg.Mes;
/// <summary>
/// mes-wms发货单(WMS_PCK)
/// </summary>
public class IssueNote : Entity
{
[Key]
/// <summary>
/// 发货单号
/// </summary>
public string DeliverNumber { get; set; }
/// <summary>
/// 物料号
/// </summary>
public string ItemCode { get; set; }
/// <summary>
/// 到货储位
/// </summary>
public string Plant { get; set; }
/// <summary>
/// 发料数量
/// </summary>
public decimal Qty_Qty { get; set; }
/// <summary>
/// 标签
/// </summary>
public string PackingCode { get; set; }
/// <summary>
/// 是否收货
/// </summary>
public string IsReceive { get; set; }
/// <summary>
/// 收货时间
/// </summary>
public DateTime ReceiveDate { get; set; }
/// <summary>
/// WMS是否读取(0,1)
/// </summary>
public int WmsState { get; set; }
/// <summary>
/// WMS读取时间
/// </summary>
public DateTime? WmsDate { get; set; }
public override object[] GetKeys()
{
return new object[] { DeliverNumber };
}
}