Location.cs 838 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model.Entities
{
    [Table("location")]
    public class Location
    {
        public int Id { get; set; }

        public string Code { get; set; }

        public string WarehouseCode { get; set; }

        public int Row { get; set; }

        public int Line { 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; }

        /// <summary>
        /// 行索引,1=左1,2=左2,3=右1,4=右2
        /// </summary>
        public int RowIndex { get; set; }

    }
}