wangxinhui
2026-03-26 ad05ef2341fe19a4220f7ada1987636f9ec4a1a9
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_DTO
{
    public class PTLCallBackDTO
    {
        /// <summary>
        /// 控制器IP地址
        /// </summary>
        public string sIp { get; set; }
 
        /// <summary>
        /// 标签的ID值
        /// </summary>
        public string sTagID { get; set; }
 
        /// <summary>
        /// 显示的数量值(拍灭时传入的数量)
        /// </summary>
        public string sValue { get; set; }
 
        /// <summary>
        /// 模式+颜色代码(例如 "15" 表示模式1颜色5)
        /// 特殊值说明:
        /// 90 - 标签自检成功
        /// 85 - 控制器掉线
        /// 87 - 控制器重新连接成功
        /// </summary>
        public string sKeyCode { get; set; }
 
        /// <summary>
        /// 货位代码(可选)
        /// </summary>
        public string sLocator { get; set; }
    }
}