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;}
|
}
|
}
|