ke_junjie
2025-06-04 101c57ec4c28bc3c36e49c50a926e9e7c0dd0247
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace iWareSda_QQJF.SrmTranModel
{
   public class SrmTranEntity
    {
        /// <summary>输送线站点名
        /// 
        /// </summary>
       public string TranName { get; set; }
 
        /// <summary>输送线站点号
        /// 
        /// </summary>
       public int stationNo { get; set; }
     /// <summary>任务ID
     /// 
     /// </summary>
        public int taskId { get; set; }
       /// <summary>当前目标地址
       /// 
       /// </summary>
        public int endStation { get; set; }
       /// <summary>自动模式 true是自动 false非自动
       /// 
       /// </summary>
        public bool auto { get; set; }
   
       /// <summary>故障状态
       /// 
       /// </summary>
        public bool state { get; set; }
        /// <summary>空闲状态
        /// 
        /// </summary>
        public bool wait { get; set; }
       /// <summary>光电1状态
       /// 
       /// </summary>
        public bool PH1 { get; set; }
       /// <summary>光电2状态
       /// 
       /// </summary>
        public bool PH2 { get; set; }
       /// <summary>高位
       /// 
       /// </summary>
        public bool PRH { get; set; }
       /// <summary>低位
       /// 
       /// </summary>
        public bool PRL { get; set; }
       /// <summary>是否有货
       /// 
       /// </summary>
        public bool goods { get; set; }
       /// <summary>报警号
        /// 1:运行超时报警;2:水平变频器报警;3:马达保护器报警;
        /// 4:急停报警;5:左超宽;6:右超宽;7:超高
       /// </summary>
        public int errId { get; set; }
       /// <summary>货物重量
       /// 
       /// </summary>
        public double weihgt { get; set; }
       /// <summary>心跳
       /// 
       /// </summary>
        public int handShake { get; set; }
       /// <summary>外出检测
        /// 0没有到位,1到位不正常,2到位正常
       /// </summary>
        public int shapeCheck { get; set; }
 
        /// <summary>条码
        /// 
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>允许下发任务
        /// 
        /// </summary>
        public bool TaskSendAllow { get; set; }
 
        public SrmTranEntity(string tranName)
        {
           TranName =tranName;
        }
    }
}