namespace IWareDataAccess.EF { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class View_BASE_ITEM { public int id { get; set; } [StringLength(50)] public string itemName { get; set; } [StringLength(50)] public string itemDes { get; set; } public decimal? weight { get; set; } [StringLength(50)] public string itemType { get; set; } public decimal? weightDifference { get; set; } public int? enable { get; set; } public string image { get; set; } [StringLength(50)] public string createLine { get; set; } public int? maxNum { get; set; } public decimal? price { get; set; } [StringLength(50)] public string unit { get; set; } public DateTime? updateTime { get; set; } [StringLength(500)] public string useContainerType { get; set; } public int? overDueTime { get; set; } public int? maxStorage { get; set; } public int? minStorage { get; set; } public int? isLock { get; set; } public int? storageEnable { get; set; } } }