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; } } }