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_order_qc { [DatabaseGenerated(DatabaseGeneratedOption.None)] public long Id { get; set; } [Required] [StringLength(50)] public string QCNo { get; set; } public int BusinessType { get; set; } [Required] [StringLength(50)] public string BusinessTypeName { get; set; } public int? QCOrderStatus { get; set; } [StringLength(50)] public string QCOrderStatusName { get; set; } public int? QCStatus { get; set; } [StringLength(50)] public string QCStatusName { get; set; } [StringLength(50)] public string SupplierName { get; set; } [StringLength(50)] public string SupplierCode { get; set; } [StringLength(50)] public string CustCode { get; set; } [StringLength(255)] public string CustChinaName { get; set; } [StringLength(255)] public string CustEnglishName { get; set; } [StringLength(50)] public string RelationNo { get; set; } public int? RelationOrderType { get; set; } [StringLength(50)] public string RelationOrderTypeName { get; set; } [StringLength(255)] public string Remarks { get; set; } [StringLength(255)] public string ErpVoucher { 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; } } }