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_packaging { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } public long ContainerTypeId { get; set; } [StringLength(50)] public string ContainerTypeCode { get; set; } [StringLength(50)] public string ContainerTypeName { get; set; } public long MaterialId { get; set; } [StringLength(50)] public string MaterialCode { get; set; } [StringLength(50)] public string MaterialName { get; set; } public long? MaterialTypeId { get; set; } [StringLength(50)] public string MaterialTypeCode { get; set; } [StringLength(50)] public string MaterialTypeName { get; set; } public decimal? BoxQty { 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; } } }