服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-03-07 cca3d57047af05ef3087fc3b244d1836add4f677
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
 
namespace Tiger.Model.Sharetronic.Shelf
{
    /// <summary>
    /// 盘点操作 5 盘
    /// </summary>
    public class GetChuteInfoEntity
    {
        /// <summary>
        /// 货架槽位集合
        /// </summary>
        public List<ShelfLedAddress> shelfLedAddressList { get; set; } = new List<ShelfLedAddress>();
        /// <summary>
        /// 接口获取物料状态信息等待时间(秒)
        /// 当数据不为 0 时,接口返回信息包含对应槽位状 态。返回 ResultValue 为PostChuteConfigModel的JSON字符串
        /// </summary>
        public int waitSeconds { get; set; } = 10;
    }
 
    /// <summary>
    /// 槽位地址状态
    /// </summary>
    public class LedAddressInfo
    {
        /// <summary>
        /// 槽位地址
        /// </summary>
        public int ledAddress { get; set; }
        /// <summary>
        /// 料盘是否存在,true-存在料盘 false-不存在料盘
        /// </summary>
        public bool isOccupy { get; set; }
    }
}