using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Tiger.Model.Sharetronic.Shelf
{
///
/// 操作货架指令 1 上架 2 移库 3 下架 6 结束下架 7 结束上架或移库
///
public class OperateConfigEntity
{
///
/// 货架编号,Y1 是货架,F 是货架前侧,R 是后侧
///
public string shelfNo { get; set; }
///
/// 指令类型,1 上架 2 移库 3 下架
///
public int operateType { get; set; }
///
/// 操作货架PDA的id
///
public string pdaid { get; set; }
///
/// 指令有效时间,仅下架(3)指令有效,一般默认 30 秒,根据最后操作时间自动延长
///
public int keepSeconds { get; set; } = 30;
///
/// 物料唯一码
///
public string uniqueNumber { get; set; }
}
}