bus_sn_project_info_wms_head.cs
1.99 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using SqlSugar;
using System;
namespace Hh.Mes.POJO.Entity
{
/// <summary>
/// sn项目信息头表 WMS推送
/// </summary>
[SugarTable("bus_sn_project_info_wms_head")]
public partial class bus_sn_project_info_wms_head : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
[SugarColumn(IsNullable = true)]
public Guid keys { get; set; }
/// <summary>
/// 系列号
/// </summary>
[SugarColumn(Length = 80, ColumnDescription = "系列号", IsNullable = true)]
public string sn { get; set; }
/// <summary>
/// 工作令号(erp)
/// </summary>
[SugarColumn(Length = 60, ColumnDescription = "项目号或者工单号", IsNullable = true)]
public string correlatedCode { get; set; }
/// <summary>
/// 主工单号,可能是子工单号 (oa申请sn填写)
/// </summary>
public string ordeCode { get; set; }
/// <summary>
/// 项目名称
/// </summary>
public string ordeName { get; set; }
/// <summary>
/// 设备类型
/// </summary>
[SugarColumn(Length = 20, ColumnDescription = "设备类型", IsNullable = true)]
public string equipmentType { get; set; }
/// <summary>
/// 申请人账号
/// </summary>
[SugarColumn(Length = 40, ColumnDescription = "申请人账号", IsNullable = true)]
public string userBy { get; set; }
/// <summary>
/// createTime
/// </summary>
[SugarColumn(ColumnDescription = "createTime", IsNullable = true)]
public DateTime createTime { get; set; }
/// <summary>
/// createBy
/// </summary>
[SugarColumn(Length = 100, ColumnDescription = "createBy", IsNullable = true)]
public string createBy { get; set; }
}
}