namespace iWareSql.MyDbContext { 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_sort { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [Required] [StringLength(50)] public string ContainerCode { get; set; } [Required] [StringLength(50)] public string MaterialCode { get; set; } [Required] [StringLength(50)] public string MaterialName { get; set; } [Required] [StringLength(255)] public string SNCode { get; set; } public int SortStatus { get; set; } [Required] [StringLength(50)] public string SortStatusName { get; set; } public decimal Quantity { get; set; } public decimal PickQuantity { get; set; } [StringLength(255)] public string Batch { get; set; } [StringLength(50)] public string SupplierBatch { get; set; } [StringLength(50)] public string ErpCode { get; set; } [StringLength(50)] public string SortNo { get; set; } public long? SortDetailsId { get; set; } [StringLength(50)] public string RelationNo { get; set; } public int? RelationOrderType { get; set; } [StringLength(50)] public string RelationOrderTypeName { get; set; } public long RelationDetailsId { 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; } [StringLength(50)] public string SortNoLineNumber { get; set; } [StringLength(50)] public string RelationNoLineNumber { get; set; } public long StockQuanLockId { get; set; } [StringLength(50)] public string MaterialUnit { get; set; } [StringLength(50)] public string POUnit { get; set; } } }