HydraulicLiftingPlatform.cs
1.32 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
using RCS.Model.Entity;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace RCS.WinClient.Equipment
{
/// <summary>
/// 液压升降台
/// </summary>
public class HydraulicLiftingPlatform : Base_Station
{
/// <summary>
/// 是否自动
/// </summary>
[NotMapped]
public bool IsAuto { get; set; }
/// <summary>
/// 是否故障
/// </summary>
[NotMapped]
public bool IsFault { get; set; }
/// <summary>
/// 是否上升到位
/// </summary>
[NotMapped]
public bool IsRisingToPosition { get; set; }
/// <summary>
/// 是否下降到位
/// </summary>
[NotMapped]
public bool IsLoweringToPosition { get; set; }
/// <summary>
/// 请求上升
/// </summary>
[NotMapped]
public bool RequestUp { get; set; }
/// <summary>
/// 请求下降
/// </summary>
[NotMapped]
public bool RequestDown { get; set; }
/// <summary>
/// 是否到达最高位
/// </summary>
[NotMapped]
public bool IsMaxUpPosition { get; set; }
}
}