namespace iWareSql.WareDbContext { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class wms_container_place { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } public long? PlaceId { get; set; } [Required] [StringLength(50)] public string PlaceCode { get; set; } public long? ContainerId { get; set; } [Required] [StringLength(50)] public string ContainerCode { 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; } [Required] [StringLength(50)] public string PlaceName { get; set; } [Required] [StringLength(50)] public string ContainerName { get; set; } public long? FactoryId { get; set; } [StringLength(255)] public string FactoryName { get; set; } [StringLength(50)] public string FactoryCode { get; set; } } }