LocationEntity.cs 615 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHWCS.Model
{
    public class LocationEntity
    {
        public int Id { get; set; }

        public string Code { get; set; }

        public string WarehouseCode { get; set; }

        public int Row { get; set; }

        public int Column { get; set; }

        public int Layer { get; set; }

        public int Grid { get; set; }

        public int Roadway { get; set; }

        public string ContainerCode { get; set; }

        public string Status { get; set; }

    }
}