OrderAlert.cs
1.09 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
using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace WebRepository
{
/// <summary>
/// 订单预警表
/// </summary>
[Table("order_alert")]
public partial class OrderAlert : SysEntity
{
public OrderAlert()
{
}
/// <summary>
/// 机台
/// </summary>
[Column("MachineNo")]
public string MachineNo { get; set; }
/// <summary>
/// 线料号
/// </summary>
[Column("WirePart")]
public string WirePart { get; set; }
/// <summary>
/// 任务开始时间
/// </summary>
[Column("JobStartTime")]
public System.DateTime? JobStartTime { get; set; }
/// <summary>
/// 预警信息
/// </summary>
[Column("AlertMsg")]
public string AlertMsg { get; set; }
/// <summary>
/// 标识符
/// </summary>
[Column("Flag")]
public int? Flag { get; set; }
/// <summary>
/// 是否播报
/// </summary>
[Column("IsSpeak")]
public Boolean? IsSpeak { get; set; }
}
}