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_order_asn { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [Required] [StringLength(50)] public string AsnNo { get; set; } public int AsnType { get; set; } [Required] [StringLength(50)] public string AsnTypeName { get; set; } public int AsnStatus { get; set; } [Required] [StringLength(50)] public string AsnStatusName { get; set; } [StringLength(50)] public string TrackingNumber { get; set; } public int ReleaseStatus { get; set; } [StringLength(50)] public string ReleaseStatusName { get; set; } public DateTime? AppointmentDate { get; set; } public bool? IsFreeze { get; set; } [StringLength(255)] public string FreezeReason { get; set; } public long FactoryId { get; set; } [StringLength(255)] public string FactoryName { get; set; } [StringLength(50)] public string FactoryCode { 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; } public DateTime? EstimatedDate { get; set; } public decimal Quantity { get; set; } public decimal GoodsQuantity { get; set; } } }