bus_workOrder_detail_operation.cs
1.62 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
using Hh.Mes.POJO.Entity;
using SqlSugar;
using System;
namespace Hh.Mes.POJO.WebEntity.bus
{
/// <summary>
/// 工序操作记录
/// </summary>
[SugarTable("bus_workOrder_detail_operation")]
public partial class bus_workOrder_detail_operation : base_Entity
{
/// <summary>
/// 主键
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
/// <summary>
/// 工单明细Id
/// </summary>
[SugarColumn(ColumnDescription = "工单明细Id", IsNullable = true)]
public int busOrderDetail_Id { get; set; }
/// <summary>
/// 操作内容
/// </summary>
[SugarColumn(Length = 2, ColumnDescription = "操作内容", IsNullable = true)]
public string content { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public string equipmentCode { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string EquipmentName { get; set; }
/// <summary>
/// 工位
/// </summary>
public string stationCode { get; set; }
/// <summary>
/// 工位名称
/// </summary>
public string StationName { get; set; }
/// <summary>
/// 开始时间
/// </summary>
[SugarColumn(ColumnDescription = "操作时间", IsNullable = true)]
public DateTime createTime { get; set; }
/// <summary>
/// 结束时间
/// </summary>
public DateTime updateTime { get; set; }
}
}