namespace iWareSda_QQJF.WCSNEW.EDM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; public partial class View_ORDER_INORDER { [DatabaseGenerated(DatabaseGeneratedOption.None)] public int id { get; set; } [StringLength(50)] public string inOrderCode { get; set; } [StringLength(50)] public string orderType { get; set; } [StringLength(50)] public string orderStatus { get; set; } public int? totalNum { get; set; } public int? DoneNum { get; set; } public decimal? totalWeight { get; set; } public DateTime? updateTime { get; set; } public int? isFinish { get; set; } public DateTime? doTime { get; set; } [StringLength(50)] public string itemName { get; set; } [StringLength(50)] public string itemDes { get; set; } public decimal? itemWeight { get; set; } [StringLength(50)] public string itemTYpe { get; set; } public decimal? price { get; set; } public int? enable { get; set; } [StringLength(50)] public string createLine { get; set; } [StringLength(50)] public string userName { get; set; } } }