WYB
2021-03-22 91b8cdad021ab052e4991f3d41834a6f0ddc36b8
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
85
86
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using SqlSugar;
 
 
namespace JiepeiWMS.Model.Models
{
    ///<summary>
    ///
    ///</summary>
    [SugarTable("WMOrderInfo", "Jiepei_WMS")]
    public class WMOrderInfo
    {
        public WMOrderInfo()
        {
        }
 
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int Id { get; set; }
 
        public string OrderNo { get; set; }
 
        public int Num { get; set; }
 
        public decimal TotalMoney { get; set; }
 
        public decimal CostMoney { get; set; }
 
        public decimal TotalArea { get; set; }
 
        public int TypeValue { get; set; }
 
        public int CodeType { get; set; }
 
        public string TgValue { get; set; }
 
        public int Layers { get; set; }
 
        public decimal Thickness { get; set; }
 
        public string Surface { get; set; }
 
        public decimal InnerCopperThickness { get; set; }
 
        public decimal CopperThickness { get; set; }
 
        public string SolderTopColor { get; set; }
 
        public string SolderDownColor { get; set; }
 
        public string FontTopColor { get; set; }
 
        public string FontDownColor { get; set; }
 
        public string FlyingTest { get; set; }
 
        public int MaterialType { get; set; }
 
        public bool IsHaveLead { get; set; }
 
        public decimal SinglePoint { get; set; }
 
        public decimal SingleInsertPoint { get; set; }
 
        public bool IsBrushThreeLacquer { get; set; }
 
        public bool IsBurn { get; set; }
 
        public bool IsSmtTest { get; set; }
 
        public decimal Width { get; set; }
 
        public decimal Height { get; set; }
 
        public bool IsElectropolishing { get; set; }
 
        public int ReferenceHole { get; set; }
 
        public string BomCategory { get; set; }
 
        public decimal AccuracyValue { get; set; }
 
    }
}