CutOrPrintPlan.cs
1.07 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace HHECS.Model.Entities
{
/// <summary>
/// PLC实体类
/// </summary>
[Table("bus_cutorprint_plan")]
public class CutOrPrintPlan : BaseEntityCU<int>
{
[Column("headKeys")]
public Guid HeadKeys { get; set; }
/// <summary>
/// 管段编码
/// </summary>
[Column("barCode")]
public string BarCode { get; set; }
/// <summary>
/// 总行走距离
/// </summary>
[Column("walkTotal")]
public decimal WalkTotal { get; set; }
/// <summary>
/// 行走距离
/// </summary>
[Column("walk")]
public decimal Walk { get; set; }
/// <summary>
/// 状态 初始=0 完成=100
/// </summary>
[Column("state")]
public int State { get; set; }
/// <summary>
/// 控制类型 切割=4 打码=3 坡口=8
/// </summary>
[Column("control")]
public int Control { get; set; }
}
}