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.

59 lines
1.5 KiB

4 years ago
using System;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using ChangKeTec.Wms.Models.Enums;
namespace ChangKeTec.Wms.Models.Wms
{
public partial class TF_ASN
{
[DatabaseGenerated(DatabaseGeneratedOption.Computed)]
public int UID { get; set; }
[NotMapped]
public string ״̬ => ((EnumFormState)State).ToString();
[Key]
[StringLength(50)]
[DisplayName("���ݱ���")]
public string BillNum { get; set; }
public EnumBillType BillType { get; set; }
[DisplayName("����ʱ��")]
public DateTime BillTime { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("��������")]
public string PoBillNum { get; set; }
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("��Ӧ�̱���")]
public string VendId { get; set; }
[NotMapped]
public string Ӧ => WmsCache.GetVenderName(VendId);
[Required(AllowEmptyStrings = true)]
[StringLength(50)]
[DisplayName("����Ա")]
public string OperName { get; set; }
[DisplayName("����ʱ��")]
public DateTime ShipTime { get; set; }
public int State { get; set; }
[StringLength(50)]
[DisplayName("��ע")]
public string Remark { get; set; }
}
}