schangxiang@126.com
2 天以前 3091217d4f4ccecde578ef1abddd810094bfc6bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
namespace iWareDataCore.ORM
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    using System.ComponentModel.DataAnnotations.Schema;
    using System.Data.Entity.Spatial;
 
    [Table("WebOrderDetailView")]
    public partial class WebOrderDetailView
    {
        [Key]
        [Column(Order = 0)]
        [DatabaseGenerated(DatabaseGeneratedOption.None)]
        public int id { get; set; }
 
        [Key]
        [Column(Order = 1)]
        [DatabaseGenerated(DatabaseGeneratedOption.None)]
        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; }
 
        [StringLength(50)]
        public string requestorder { get; set; }
 
        [StringLength(50)]
        public string listno { get; set; }
    }
}