using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WIDESEA_Common { public class LocationLayer { public int index { get; set; } public List rows { get; set; } } public class LocationRow { public int index { get; set; } public List cols { get; set; } } public class LocationCol { public int index { get; set; } /// /// 检测柜状态 /// public string remark { get; set; } /// /// 货位状态 /// public string location_state { get; set; } /// /// 锁定状态 /// public string location_lock { get; set; } } }