namespace iWareSql.WmsDBModel { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class wms_base_warehouse { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [Required] [StringLength(50)] public string Code { get; set; } [Required] [StringLength(50)] public string Name { get; set; } [StringLength(255)] public string Address { get; set; } public long FactoryId { get; set; } [StringLength(255)] public string FactoryName { get; set; } [StringLength(50)] public string FactoryCode { get; set; } public decimal? Length { get; set; } public decimal? Width { get; set; } public decimal? Height { get; set; } [StringLength(255)] public string BaseUnit { get; set; } [StringLength(255)] public string Position { get; set; } public bool IsDisabled { get; set; } [StringLength(255)] public string Remarks { get; set; } public DateTime? CreateTime { get; set; } public DateTime? UpdateTime { get; set; } public long? CreateUserId { get; set; } [StringLength(64)] public string CreateUserName { get; set; } public long? UpdateUserId { get; set; } [StringLength(64)] public string UpdateUserName { get; set; } public bool IsDelete { get; set; } } }