xiaojiao
2026-01-24 c5f01e9a882b16f534166d033312c5c8ba8d94dd
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
 *代码由框架生成,任何更改都可能导致被代码生成器覆盖
 *如果数据库字段发生变化,请在代码生器重新生成此Model
 */
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA.Entity.SystemModels;
 
namespace WIDESEA.Entity.DomainModels
{
    [Entity(TableCnName = "测量统计",TableName = "VV_measure_View")]
    public class VV_measure_View:BaseEntity
    {
        /// <summary>
       ///
       /// </summary>
       [Key]
       [Display(Name ="task_id")]
       [Column(TypeName="uniqueidentifier")]
       [Required(AllowEmptyStrings=false)]
       public Guid task_id { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="task_areaid")]
       [MaxLength(80)]
       [Column(TypeName="nvarchar(80)")]
       public string task_areaid { get; set; }
 
       /// <summary>
       ///任务类型
       /// </summary>
       [Display(Name ="任务类型")]
       [MaxLength(80)]
       [Column(TypeName="nvarchar(80)")]
       [Required(AllowEmptyStrings=false)]
       public string task_type { get; set; }
 
       /// <summary>
       ///任务状态
       /// </summary>
       [Display(Name ="任务状态")]
       [MaxLength(80)]
       [Column(TypeName="nvarchar(80)")]
       [Required(AllowEmptyStrings=false)]
       public string task_state { get; set; }
 
       /// <summary>
       ///小车ID
       /// </summary>
       [Display(Name ="小车ID")]
       [MaxLength(20)]
       [Column(TypeName="nvarchar(20)")]
       public string task_rgvId { get; set; }
 
       /// <summary>
       ///条码值
       /// </summary>
       [Display(Name ="条码值")]
       [MaxLength(80)]
       [Column(TypeName="nvarchar(80)")]
       [Required(AllowEmptyStrings=false)]
       public string task_barcode { get; set; }
 
       /// <summary>
       ///轴承编号
       /// </summary>
       [Display(Name ="轴承编号")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       public string task_materielid { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="task_qty")]
       [DisplayFormat(DataFormatString="18,3")]
       [Column(TypeName="decimal")]
       public decimal? task_qty { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="task_sn")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       public string task_sn { get; set; }
 
       /// <summary>
       ///来源货位
       /// </summary>
       [Display(Name ="来源货位")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       public string task_fromlocationid { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="task_outstation")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       public string task_outstation { get; set; }
 
       /// <summary>
       ///目的货位
       /// </summary>
       [Display(Name ="目的货位")]
       [MaxLength(80)]
       [Column(TypeName="nvarchar(80)")]
       public string task_tolocationid { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="task_instation")]
       [MaxLength(40)]
       [Column(TypeName="nvarchar(40)")]
       public string task_instation { get; set; }
 
       /// <summary>
       ///完成时间
       /// </summary>
       [Display(Name ="完成时间")]
       [Column(TypeName="datetime")]
       public DateTime? task_finishedtime { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="task_requestkey")]
       [MaxLength(80)]
       [Column(TypeName="nvarchar(80)")]
       public string task_requestkey { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="task_isunpacked")]
       [Column(TypeName="bit")]
       public bool? task_isunpacked { get; set; }
 
       /// <summary>
       ///
       /// </summary>
       [Display(Name ="task_grade")]
       [Column(TypeName="int")]
       public int? task_grade { get; set; }
 
       /// <summary>
       ///创建者
       /// </summary>
       [Display(Name ="创建者")]
       [MaxLength(510)]
       [Column(TypeName="nvarchar(510)")]
       public string task_creator { get; set; }
 
       /// <summary>
       ///创建时间
       /// </summary>
       [Display(Name ="创建时间")]
       [Column(TypeName="datetime")]
       public DateTime? task_createtime { get; set; }
 
       /// <summary>
       ///起始站台
       /// </summary>
       [Display(Name ="起始站台")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       public string task_beginstation { get; set; }
 
       /// <summary>
       ///目的站台
       /// </summary>
       [Display(Name ="目的站台")]
       [MaxLength(100)]
       [Column(TypeName="nvarchar(100)")]
       public string task_endstation { get; set; }
 
       /// <summary>
       ///轴承名称
       /// </summary>
       [Display(Name ="轴承名称")]
       [MaxLength(400)]
       [Column(TypeName="nvarchar(400)")]
       [Required(AllowEmptyStrings=false)]
       public string materiel_name { get; set; }
 
       
    }
}