schangxiang@126.com
2025-09-23 1ec17ce75f4e4324e9756a91c74f3f52928c9351
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
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; }
    }
}