服务端的TigerApi 框架,基于.NET6 2024 版本
Ben Lin
2024-11-04 9da68fc16ccd0fba6472096ae298e4bcdf5d12b8
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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
 
namespace Tiger.Model.Sharetronic.Shelf
{
    /// <summary>
    /// 操作货架指令 1 上架 2 移库 3 下架 6 结束下架 7 结束上架或移库
    /// </summary>
    public class OperateConfigEntity
    {
        /// <summary>
        /// 货架编号,Y1 是货架,F 是货架前侧,R 是后侧
        /// </summary>
        public string shelfNo { get; set; }
        /// <summary>
        /// 指令类型,1 上架 2 移库 3 下架
        /// </summary>
        public int operateType { get; set; }
        /// <summary>
        /// 操作货架PDA的id
        /// </summary>
        public string pdaid { get; set; }
        /// <summary>
        /// 指令有效时间,仅下架(3)指令有效,一般默认 30 秒,根据最后操作时间自动延长
        /// </summary>
        public int keepSeconds { get; set; } = 30;
        /// <summary>
        /// 物料唯一码
        /// </summary>
        public string uniqueNumber { get; set; }
    }
}