schangxiang@126.com
2025-07-30 a16904bd86f89e97a5e507e08003506c5dd8642e
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace yunneiWCS.EnumDefine
{
   public  class convEntity
    {
        /// <summary>心跳
        /// 
        /// </summary>
        public  string handShake { get; set; }
 
        /// <summary>模式 1手动  2自动  3报警
        /// 
        /// </summary>
        public string mode { get; set; }
 
        /// <summary>托盘位置  0无货 1外面 2里面
        /// 
        /// </summary>
        public string position { get; set; }
        /// <summary>任务号
        /// 
        /// </summary>
        public long taskId { get; set; }
        /// <summary>外形检查 0正常 1超
        /// 
        /// </summary>
        public string check { get; set; }
 
        ///  <summary>是否报警 1=故障 0=正常
        /// 
        /// </summary>
        public string isAlarm { get; set; }
 
 
 
        /// <summary>
        /// 上料完成信号 【EditBy shaocx,2022-03-15】
        /// </summary>
        public bool W_LoadMaterialConfirm { get; set; }
 
        /// <summary>
        /// 工件记忆信号 【EditBy shaocx,2022-03-15】
        /// </summary>
        public bool W_GJJY { get; set; }
    }
}