using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_DTO.Basic
{
    public class LocationArea
    {
        /// 
        /// 库区名称
        /// 
        public string house_name { get; set; }
        /// 
        /// 库区编号
        /// 
        public int shelf_code { get; set; }
        /// 
        /// 
        /// 
        public int tunnel { get; set; }
    }
    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 string locationCode { get; set; }
        public int row { get; set; }
        public int layer { get; set; }
        public int index { get; set; }
        /// 
        /// 检测柜状态
        /// 
        public string remark { get; set; }
        /// 
        /// 货位状态
        /// 
        public int location_state { get; set; }
        /// 
        /// 锁定状态
        /// 
        public int location_lock { get; set; }
    }
}