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.

82 lines
2.0 KiB

1 year ago
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class TS_SORT_DETAIL
{
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public long UID { get; set; }
[Key]
[Column(Order = 0)]
[StringLength(50)]
[DisplayName("���ݱ���")]
public string BillNum { get; set; }
[DisplayName("�к�")]
public int LineNum { get; set; }
[Key]
[Column(Order = 1)]
[StringLength(50)]
[DisplayName("VIN��")]
public string VinCode { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("˳����")]
public string SeqNum { get; set; }
[Key]
[Column(Order = 2)]
[StringLength(50)]
[DisplayName("���Ϻ�")]
public string PartCode { get; set; }
[NotMapped]
[DisplayName("��������")]
public string PartDesc => WmsCache.GetPartDesc1(PartCode);
[DisplayName("����")]
public string BarCode { get; set; }
[StringLength(50)]
[DisplayName("�ͻ����Ϻ�")]
public string CustPartCode { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("��Ŀ����")]
public string ProjectId { get; set; }
[StringLength(50)]
[DisplayName("FYON NUMBER")]
public string FyonNum { get; set; }
[StringLength(50)]
[DisplayName("SUPPLIER")]
public string VendId { get; set; }
[StringLength(50)]
[DisplayName("DOCK")]
public string Dock { get; set; }
[StringLength(50)]
[DisplayName("DISPATCH DATE")]
public string DispatchDate { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("״̬")]
public string State { get; set; }
[NotMapped]
public string PartGroup { get; set; }
}
}