namespace iWareDataCore.ORM { using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; [Table("WebOrderDetail")] public partial class WebOrderDetail { public int id { get; set; } public int weborderid { get; set; } public int? sequenceno { get; set; } [StringLength(50)] public string materialno { get; set; } [StringLength(50)] public string nestingno { get; set; } [StringLength(50)] public string nestingname { get; set; } public int? materialid { get; set; } public int? quantity { get; set; } [StringLength(50)] public string articlenumber { get; set; } [StringLength(50)] public string grade { get; set; } [StringLength(50)] public string classification { get; set; } [StringLength(50)] public string profiletype { get; set; } [StringLength(50)] public string length { get; set; } [StringLength(50)] public string density { get; set; } [StringLength(50)] public string webheight { get; set; } [StringLength(50)] public string webthickness { get; set; } [StringLength(50)] public string flangewidth { get; set; } [StringLength(50)] public string flangethickness { get; set; } [StringLength(50)] public string sectiondim { get; set; } [StringLength(50)] public string unitweight { get; set; } [StringLength(70)] public string remark { get; set; } public DateTime? createtime { get; set; } } }