read_equipmentinformation_ecs.cs
1.98 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 Hh.Mes.POJO.Entity;
using SqlSugar;
using System;
namespace Hh.Mes.POJO.WebEntity
{
[SugarTable("read_equipmentinformation_ecs")]
public partial class read_equipmentinformation_ecs : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public string id { get; set; }
[SugarColumn(IsNullable = true)]
public int equipmentId { get; set; }
[SugarColumn(IsNullable = true)]
public int equipmentTypeTemplateId { get; set; }
/// <summary>
/// 属性编号
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string equipmentTypeTemplateCode { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string informationValue { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string remark { get; set; }
[SugarColumn(IsNullable = true)]
public DateTime createTime { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string createBy { get; set; }
[SugarColumn(IsNullable = true)]
public int isSend { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string equipmentCode { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string stationCode { get; set; }
/// <summary>
/// 任务号,对应工序明细Id
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string taskNo { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string equipmentTypeTemplateName { get; set; }
[SugarColumn(Length = 255, IsNullable = true)]
public string equipmentName { get; set; }
/// <summary>
/// 焊接层
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string count { get; set; }
}
}