服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-02-27 9e4d2ea113f6d5631f78aa85bbe39481fd701b72
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Tiger.Model.SeaStone.Shelf
{
    /// <summary>
    /// 储位上报数据结构
    /// </summary>
    public class SlotChanged
    {
        public SlotChanged()
        {
 
        }
 
        public SlotChanged(int LedId, int CellStatus, string RackId, DateTime Timestamp, string SessionId)
        {
            this.LedId = LedId;
            this.CellStatus = CellStatus;
            this.RackId = RackId;
            this.Timestamp = Timestamp;
            this.SessionId = SessionId;
        }
 
        /// <summary>
        /// 储位灯序号
        /// </summary>
        public int LedId { get; set; }
        /// <summary>
        /// 储位状态:0-空,1-非空
        /// </summary>
        public int CellStatus { get; set; }
        /// <summary>
        /// 料架编码
        /// </summary>
        public string RackId { get; set; }
        /// <summary>
        /// 时间戳
        /// </summary>
        public DateTime Timestamp { get; set; }
        /// <summary>
        /// 会话ID
        /// </summary>
        public string SessionId { get; set; }
        /// <summary>
        /// UserId
        /// </summary>
        public string UserId { get; set; }
        /// <summary>
        /// SendTimes
        /// </summary>
        public string SendTimes { get; set; }
    }
}