forked from lt8300877/NormalizingApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProductNumber.cs
More file actions
44 lines (43 loc) · 1.12 KB
/
ProductNumber.cs
File metadata and controls
44 lines (43 loc) · 1.12 KB
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
using System;
namespace NormalizingApp.Models
{
public class ProductNumber
{
/// <summary>
/// 完整接头编号
/// </summary>
public string ProductNumberFull { get; set; }
/// <summary>
/// 地名07
/// </summary>
public string AreaName { get; set; }
/// <summary>
/// 线名
/// </summary>
public string LineName { get; set; }
/// <summary>
/// 班组R/S
/// </summary>
public string GroupName { get; set; }
/// <summary>
/// 日期
/// </summary>
public string Date { get; set; }
/// <summary>
/// 接头编号
/// </summary>
public int SpliceNumber { get; set; }
/// <summary>
/// 操作员姓名
/// </summary>
public string OperatorName { get; set; }
/// <summary>
/// 操作员工号
/// </summary>
public string WorksNumber { get; set; }
/// <summary>
/// 数据库日期
/// </summary>
public DateTime AccessDate { get; set; }
}
}