bus_workOrder_statistics.cs
1.84 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
using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations.Schema;
namespace Hh.Mes.POJO.Entity
{
public partial class bus_workOrder_statistics
{
///// <summary>
///// 产线Code
///// </summary>
//[SugarColumn(Length = 40, ColumnDescription = "产线Code", IsNullable = true)]
//public string lineCode { get; set; }
/// <summary>
/// 工位code
/// </summary>
[SugarColumn(Length = 40, ColumnDescription = "工位code", IsNullable = true)]
public string stationCode { get; set; }
///// <summary>
///// 工序code
///// </summary>
//[SugarColumn(Length = 40, ColumnDescription = "工序code", IsNullable = true)]
//public string oprSequenceCode { get; set; }
///// <summary>
///// 工序名称
///// </summary>
//[SugarColumn(Length = 40, ColumnDescription = "工序名称", IsNullable = true)]
//public string oprSequenceName { get; set; }
//[SugarColumn(Length = 40, IsNullable = true)]
//public string equipmentCode { get; set; }
[SugarColumn(Length = 50, ColumnDescription = "班组", IsNullable = true)]
public string teamCode { get; set; }
[SugarColumn(Length = 50, ColumnDescription = "人员", IsNullable = true)]
public string userId { get; set; }
[SugarColumn(Length = 50, ColumnDescription = "工作中心", IsNullable = true)]
public string workCenterCode { get; set; }
/// <summary>
/// 工序任务数
/// </summary>
public int sequenceCount { get; set; }
/// <summary>
/// 未做
/// </summary>
public int notDoneCount { get; set; }
/// <summary>
/// 比例
/// </summary>
public int ratio { get; set; }
}
}