using System; using System.Collections.Generic; using System.ComponentModel; using System.Security.Cryptography; using System.Text; namespace Tiger.Model.Sharetronic.Shelf { /// /// 盘点操作 5 盘 /// public class OperateConfigConfirmEntity { /// /// 货架槽位集合 /// public List shelfLedAddressList { get; set; } = new List(); /// /// 参数对象 /// public Parameters parameters { get; set; } /// /// 指令类型,5 盘点 /// public int operateType { get; set; } } /// /// 参数对象 /// public class Parameters { /// /// 操作货架PDA的id /// public string pdaid { get; set; } /// /// 操作的单据号码 /// public string orderCode { get; set; } /// /// 备用参数1 /// public string userItem1 { get; set; } /// /// 备用参数2 /// public string userItem2 { get; set; } /// /// 备用参数3 /// public string userItem3 { get; set; } /// /// 备用参数4 /// public string userItem4 { get; set; } /// /// 备用参数5 /// public string userItem5 { get; set; } } /// /// 货架槽位对象 /// public class ShelfLedAddress { /// /// 货架编号,Y1 是货架,F 是货架前侧,R 是后侧 /// public string shelfNo { get; set; } /// /// 货架类型,sensor_shelf 感应式货架,led_shelf LED 灯架 /// public string shelfType { get; set; } /// /// 灯位地址集合 /// public List ledAddressList { get; set; } = new List(); } /// /// 灯位地址对象 /// public class LedAddress { /// /// 灯位地址 /// public int ledAddress { get; set; } /// /// 物料唯一码 /// public string uniqueNumber { get; set; } } }