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.

45 lines
855 B

4 years ago
using System;
using System.ComponentModel;
using ChangKeTec.Wms.Models.Enums;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class DeliverSummary
{
[DisplayName("�ͻ�ID")]
public string CustId { get; set; }
[DisplayName("���Ϻ�")]
public string PartCode { get; set; }
[DisplayName("�����")]
public string CellCode { get; set; }
[DisplayName("Ŀ����λ")]
public string ToLocCode { get; set; }
[DisplayName("�ͻ����Ϻ�")]
public string CustPartCode { get; set; }
[DisplayName("����ָ������")]
public decimal PlanQty { get; set; }
[DisplayName("����")]
public decimal Qty { get; set; }
[DisplayName("״̬")]
public EnumStockState State { get; set; }
}
}