STKStatusModel.cs 820 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 堆垛机运行节点模型
	/// </summary>
    public partial class STKStatusModel
    {
        /// <summary>
        /// 任务号
        /// </summary>
        [Column("taskNo")]
        public string TaskNo { get; set; }
        /// <summary>
	    /// 节点状态
	    /// </summary>
        [Column("status")]
        public int? Status { get; set; }
        /// <summary>
        /// 请求仓位高度
        /// </summary>
        [Column("height")]
        public int? Height { get; set; }
        /// <summary>
        /// 请求托盘号
        /// </summary>
        [Column("ContainerCode")]
        public string ContainerCode { get; set; }
    }
}