using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace Tiger.Model.Sharetronic.Shelf
{
///
/// 操作指令下获取槽位最新的变更信息
///
public class GetOperateChuteChangeInfoEntity
{
///
/// 货架编号,Y1 是货架,F 是货架前侧,R 是后侧
///
public string shelfNo { get; set; }
///
/// 指令类型,1 上架 2 移库 3 下架
///
public int operateType { get; set; }
}
}