namespace wcftest.orm { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class vvBase_ProductPosition { [Key] [Column(Order = 0)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int ProductPosition_Id { get; set; } [Key] [Column(Order = 1)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int IsLocked { get; set; } [StringLength(50)] public string BillCode { get; set; } public decimal? OrignStorage { get; set; } public decimal? ProductStorage { get; set; } public byte? IsBoosterArm { get; set; } [StringLength(50)] public string PlateCode { get; set; } [StringLength(50)] public string PlateType { get; set; } [StringLength(50)] public string AreaCode { get; set; } [StringLength(300)] public string ExtendField01 { get; set; } [Key] [Column(Order = 2)] [StringLength(50)] public string ClassName { get; set; } [Key] [Column(Order = 3)] [StringLength(50)] public string PositionName { get; set; } /// /// Èë¿âʱ¼ä /// [Key] [Column(Order = 4)] public DateTime InStorageDate { get; set; } [Key] [Column(Order = 5)] [DatabaseGenerated(DatabaseGeneratedOption.None)] public int Product_Id { get; set; } [StringLength(50)] public string PoCode { get; set; } [StringLength(250)] public string TrackingNumber { get; set; } [StringLength(50)] public string SaleCode { get; set; } [StringLength(300)] public string ExtendField04 { get; set; } [StringLength(300)] public string ExtendField03 { get; set; } [Key] [Column(Order = 6)] public byte PositionType { get; set; } [StringLength(300)] public string ExtendField05 { get; set; } [StringLength(300)] public string ExtendField08 { get; set; } [StringLength(300)] public string ExtendField09 { get; set; } [StringLength(50)] public string SmallUnit { get; set; } [StringLength(50)] public string ContainerNo { get; set; } public int? IsFreeze { get; set; } public int? Enable { get; set; } public decimal? PositionLength { get; set; } [StringLength(50)] public string ItemNumber { get; set; } [Key] [Column(Order = 7)] [StringLength(50)] public string ProductCode { get; set; } [Key] [Column(Order = 8)] [StringLength(500)] public string ProductName { get; set; } /// /// ÏÞÓÃÈÕÆÚ /// public DateTime? LimitDate { get; set; } public int? Brand_Id { get; set; } /// /// ÔÚ¿âÌìÊý /// public int InStoreDays { get; set; } public int? PhysicsHeight { get; set; } public int? LogicHeight { get; set; } public int? IsInMoreHighPosition { get; set; } [StringLength(50)] public string ShelveCode { get; set; } /// /// ¿âλ˵Ã÷ /// public string PositionRemark { get; set; } /// /// ²Ù×÷±¸×¢ [EditBy shaocx,2023-07-26] /// [StringLength(500)] public string OpRemark { get; set; } /// /// ²Ù×÷ÎïÁÏËø¶¨µÄʱ¼ä [EditBy shaocx,2023-07-26] /// public DateTime? DoContainerNoTime { get; set; } #region ÊÕ»õÖ§³Ö¶þάÂë ¡¾Editby shaocx,2023-11-5¡¿ /// /// ¶þάÂëµÄGUID [EditBy shaocx,2024-03-14] /// public string qrCode_guid { get; set; } /// /// ÌõÂëÖµ£¨Ò»Î¬Âë»ò¶þάÂëÖµ£© [EditBy shaocx,2024-03-14] /// public string BarCode { get; set; } /// /// ÊÇ·ñÊǶþάÂëÖµ [EditBy shaocx,2024-03-14] /// public bool? IsQrCode { get; set; } #endregion } }