服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2025-01-10 dc203bafb60dc9985c805c6a4ec5f8018f3d3cf6
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
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Tiger.Model.SeaStone.Shelf
{
    /// <summary>
    /// 货架储位灯状态
    /// </summary>
    public class SlotLightStatus
    {
        public SlotLightStatus()
        {
 
        }
 
        public SlotLightStatus(int slotNo, int side, string lightColor, bool blinkColor)
        {
            this.slotNo = slotNo;
            this.side = side;
            this.lightColor = lightColor;
            this.isBlink = blinkColor;
        }
 
        /// <summary>
        /// 储位号
        /// </summary>
        public int slotNo { get; set; }
        /// <summary>
        /// 方向(0正面|1反面)
        /// </summary>
        public int side { get; set; }
        /// <summary>
        /// 灯色
        /// </summary>
        public string lightColor { get; set; }
        /// <summary>
        /// 是否闪烁
        /// </summary>
        public bool isBlink { get; set; }
    }
}