服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
6 天以前 bdf6174b1065a24877f16bba68921772a9586b48
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 GetOperateChuteChangeInfoEntity
    {
        /// <summary>
        /// 货架编号,Y1 是货架,F 是货架前侧,R 是后侧
        /// </summary>
        public string shelfNo { get; set; }
        /// <summary>
        /// 指令类型,1 上架 2 移库 3 下架
        /// </summary>
        public int operateType { get; set; }
    }
}