base_productionOrder_EP3D.cs
2.72 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
69
70
71
72
73
74
75
76
using System;
using System.Collections.Generic;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("base_productionOrder_EP3D")]
public partial class base_productionOrder_EP3D
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
[SugarColumn(IsNullable = true)]
public Guid keys { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "管线号", IsNullable = true)]
public string pipelineNo { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "焊点编号1", IsNullable = true)]
public string weldingPointNo1 { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "焊接材料1", IsNullable = true)]
public string weldingMaterial1 { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "焊点编号2", IsNullable = true)]
public string weldingPointNo2 { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "焊接材料2", IsNullable = true)]
public string weldingMaterial2 { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "页码", IsNullable = true)]
public string pagination { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "管段编号", IsNullable = true)]
public string pipeSectionNo { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "管路等级", IsNullable = true)]
public string pipelineGrade { get; set; }
[SugarColumn(ColumnDescription = "管段长度", IsNullable = true)]
public decimal pipeLength { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "管段材料码", IsNullable = true)]
public string pipeMaterialCode { get; set; }
[SugarColumn(ColumnDescription = "管段数量", IsNullable = true)]
public int pipeNumber { get; set; }
[SugarColumn(ColumnDescription = "状态,0未使用,10已关联,20已排版,30作废", IsNullable = true)]
public int state { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime createTime { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime updateTime { get; set; }
[SugarColumn(Length = 400, IsNullable = true)]
public string temp1 { get; set; }
[SugarColumn(Length = 400, IsNullable = true)]
public string temp2 { get; set; }
[SugarColumn(Length = 400, ColumnDescription = "导入批次", IsNullable = true)]
public string batchNo { get; set; }
}
public partial class productionOrderList
{
public List<base_productionOrder_EP3D> details { get; set; }
}
}