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.
42 lines
874 B
42 lines
874 B
4 years ago
|
using System;
|
||
|
using System.ComponentModel;
|
||
|
|
||
|
using ChangKeTec.Wms.Models.Enums;
|
||
|
|
||
|
namespace ChangKeTec.Wms.Models.Wms
|
||
|
{
|
||
|
|
||
|
public partial class HY_PICK_FACT_SUMMARY
|
||
|
{
|
||
|
|
||
|
[DisplayName("��������")]
|
||
|
public DateTime BillDate { get; set; }
|
||
|
|
||
|
|
||
|
[DisplayName("Ŀ��λ��")]
|
||
|
public string CellCode { get; set; }
|
||
|
|
||
|
[DisplayName("Ŀ����λ")]
|
||
|
public string ToLocCode { get; set; }
|
||
|
|
||
|
[DisplayName("���Ϻ�")]
|
||
|
public string PartCode { get; set; }
|
||
|
|
||
|
|
||
|
[DisplayName("��������")]
|
||
|
public string PartDesc => WmsCache.GetPartDesc(PartCode);
|
||
|
|
||
|
|
||
|
// [DisplayName("����")]
|
||
|
// public string Batch { get; set; }
|
||
|
[DisplayName("�ϼ�����")]
|
||
|
public decimal Qty { get; set; }
|
||
|
|
||
|
|
||
|
|
||
|
[DisplayName("�����ܼ�")]
|
||
|
public decimal PartSumPrice { get; set; }
|
||
|
|
||
|
}
|
||
|
}
|