Blame view

WebRepository/Domain/api/STKStatusModel.cs 663 Bytes
霍尔 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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; }
22
23
24
25
26
        /// <summary>
        /// 请求仓位高度
        /// </summary>
        [Column("height")]
        public int? Height { get; set; }
霍尔 authored
27
28
    }
}