陈勇
2026-03-17 40ef2cb3dd897dfc74d9576d0973517b24cc9367
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
using Magicodes.ExporterAndImporter.Core;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_Core.DB.Models;
 
namespace WIDESEA_Model.Models
{
    [SugarTable(nameof(Dt_CarBodyInfo_hty), "车身历史信息")]
    public class Dt_CarBodyInfo_hty : BaseEntity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [ImporterHeader(Name = "主键")]
        [ExporterHeader(DisplayName = "主键")]
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")]
        public int Id { get; set; }
 
        /// <summary>
        /// 滑橇号
        /// </summary>
        [ImporterHeader(Name = "滑橇号")]
        [ExporterHeader(DisplayName = "滑橇号")]
        [SugarColumn(IsNullable = false, Length = 50, ColumnDescription = "滑橇号")]
        public string PalletCode { get; set; }
 
        /// <summary>
        /// 焊装工单号
        /// </summary>
        [ImporterHeader(Name = "焊装工单号")]
        [ExporterHeader(DisplayName = "焊装工单号")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "焊装工单号")]
        public string workOrderNo { get; set; }
 
        /// <summary>
        /// PVI码
        /// </summary>
        [ImporterHeader(Name = "PVI码")]
        [ExporterHeader(DisplayName = "PVI码")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "PVI码")]
        public string PVI { get; set; }
 
        /// <summary>
        /// RFID
        /// </summary>
        [ImporterHeader(Name = "RFID")]
        [ExporterHeader(DisplayName = "RFID")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "RFID")]
        public string RFID { get; set; }
 
        /// <summary>
        /// 车身类型  1-白车身  2-彩车身  3-空撬组
        /// </summary>
        [ImporterHeader(Name = "车身类型")]
        [ExporterHeader(DisplayName = "车身类型")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "车身类型")]
        public int CarType { get; set; }
 
        /// <summary>
        /// 工单类型
        /// </summary>
        [ImporterHeader(Name = "工单类型")]
        [ExporterHeader(DisplayName = "工单类型")]
        [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "工单类型")]
        public string workOrderType { get; set; }
 
        /// <summary>
        /// 白车身物料号
        /// </summary>
        [ImporterHeader(Name = "白车身物料号")]
        [ExporterHeader(DisplayName = "白车身物料号")]
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "白车身物料号")]
        public string biwMaterialCode { get; set; }
 
        /// <summary>
        /// 彩车身物料号
        /// </summary>
        [ImporterHeader(Name = "彩车身物料号")]
        [ExporterHeader(DisplayName = "彩车身物料号")]
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "彩车身物料号")]
        public string pbMaterial { get; set; }
 
        /// <summary>
        /// 车型特征值
        /// </summary>
        [ImporterHeader(Name = "车型特征值")]
        [ExporterHeader(DisplayName = "车型特征值")]
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "车型特征值")]
        public string vehicleCharacteristic { get; set; }
 
        /// <summary>
        /// 天窗特征值
        /// </summary>
        [ImporterHeader(Name = "天窗特征值")]
        [ExporterHeader(DisplayName = "天窗特征值")]
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "天窗特征值")]
        public string skylightCharacteristic { get; set; }
 
        /// <summary>
        /// 车身颜色
        /// </summary>
        [ImporterHeader(Name = "车身颜色")]
        [ExporterHeader(DisplayName = "车身颜色")]
        [SugarColumn(IsNullable = true, Length = 20, ColumnDescription = "车身颜色")]
        public string carBodyCharacteristic { get; set; }
 
        /// <summary>
        /// 车身状态 0-未锁定  1-锁定
        /// </summary>
        [ImporterHeader(Name = "车身状态")]
        [ExporterHeader(DisplayName = "车身状态")]
        [SugarColumn(IsNullable = true,  ColumnDescription = "车身状态")]
        public int BodyStatus { get; set; }
 
        /// <summary>
        /// 焊装入口过点时间
        /// </summary>
        [ImporterHeader(Name = "焊装入口过点时间")]
        [ExporterHeader(DisplayName = "焊装入口过点时间")]
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "焊装入口过点时间")]
        public DateTime? biwInPassTime { get; set; }
 
        /// <summary>
        /// 描述
        /// </summary>
        [ImporterHeader(Name = "描述")]
        [ExporterHeader(DisplayName = "描述")]
        [SugarColumn(IsNullable = true, Length = 40, ColumnDescription = "描述")]
        public string Description {  get; set; }
 
        /// <summary>
        /// 涂装工单号
        /// </summary>
        [ImporterHeader(Name = "涂装工单号")]
        [ExporterHeader(DisplayName = "涂装工单号")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "涂装工单号")]
        public string plantingWorkNo { get; set; }
 
        /// <summary>
        /// 总装工单号
        /// </summary>
        [ImporterHeader(Name = "总装工单号")]
        [ExporterHeader(DisplayName = "总装工单号")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "总装工单号")]
        public string assemblyWorrkNo { get; set; }
 
        /// <summary>
        /// VIN码
        /// </summary>
        [ImporterHeader(Name = "VIN码")]
        [ExporterHeader(DisplayName = "VIN码")]
        [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "VIN码")]
        public string VIN { get; set; }
 
        /// <summary>
        /// 完成时间
        /// </summary>
        [SugarColumn(IsNullable = false, IsOnlyIgnoreUpdate = true, ColumnDescription = "创建时间")]
        public DateTime FinishTime { get; set; }
 
        /// <summary>
        /// 完成方式
        /// </summary>
        [SugarColumn(IsNullable = true, ColumnDescription = "完成方式")]
        public int FinishType { get; set; }
    }
}