using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace ChangKeTec.Wms.Models.Wms { public partial class TB_PRODUCT_SELL { public int UID { get; set; } [Key] [Column(Order = 0)] [StringLength(50)] [DisplayName("单据编号")] public string BillNum { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] [DisplayName("销售订单号")] public string SoBillNum { get; set; } [DisplayName("订单行")] public int SoLineNum { get; set; } [Key] [Column(Order = 1)] [StringLength(50)] [DisplayName("箱码")] public string BarCode { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] [DisplayName("物料号")] public string PartCode { get; set; } [NotMapped] [DisplayName("物料描述")] public string PartDesc => WmsCache.GetPartDesc(PartCode); [Required(AllowEmptyStrings = true)] [StringLength(50)] [DisplayName("批次")] public string Batch { get; set; } [Required(AllowEmptyStrings = true)] [StringLength(50)] [DisplayName("来源库位")] public string FromLocCode { get; set; } [Column(TypeName = "money")] [DisplayName("数量")] public decimal Qty { get; set; } [StringLength(50)] [DisplayName("器具编号")] public string EqptCode { get; set; } [DisplayName("状态")] public int State { get; set; } [StringLength(200)] [DisplayName("备注")] public string Remark { get; set; } } }