服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-01-02 87422530bec9baf531d2e0715b9c786a4d35667f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
 
namespace Tiger.Model.Sharetronic.Shelf
{
    /// <summary>
    ///  所有灯全灭
    /// </summary>
    public class DownAllEntity
    {
        /// <summary>
        /// 货架编号,Y1 是货架,F 是货架前侧,R 是后侧
        /// </summary>
        public string shelfNo { get; set; }
        /// <summary>
        /// 货架类型,sensor_shelf 感应式货架,led_shelf LED 灯架
        /// </summary>
        public string shelfType { get; set; }
    }
}