huanghongfeng
2025-04-24 aadc2a4fe5e62be74044acbb75549ef08a2d1c5d
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Comm.WCSInterface.Requse
{
    /// <summary>
    /// 该接口用做批量禁用启用仓位,要么全部更新成功,要么全部更新失败。生成货架初始化的仓位都是已启用状态的。
    /// 上层管理仓位时需保证与RCMS-2000的仓位状态保持一致。
    /// </summary>
    public class blockStgBin : AGVRequsetBase
    {
        public object data { get; set; }
    }
 
    public class blockStg
    {
        /// <summary>
        /// 仓位编号    
 
        /// </summary>
        public string stgBinCode { get;set; }
 
        /// <summary>
        /// 操作类型:0.启用仓位;1.启用仓位
        /// </summary>
        public string action { get;}
    }
}