TaskSplitModel.cs 1.64 KB
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 任务编辑
	/// </summary>
    public partial class TaskSplitModel
    {
        /// <summary>
        /// "任务id,string(20),唯一,必填
        /// </summary>
        public string taskID { get; set; }
        /// <summary>
	    /// "子动作编号,int,必填
	    /// </summary>
        public int SeriaNo { get; set; }
        /// <summary>
	    /// "小车动作类型,int,必填"
	    /// </summary>
        public int agvTaskType { get; set; }
        /// <summary>
        /// 起点,string(20),RFID值 ,必填"
        /// </summary>
        public string fromPoint { get; set; }
        /// <summary>
        /// "终点,string(20),RFID值,必填"
        /// </summary>
        public string toPoint { get; set; }
        /// <summary>
        /// 起点区域,string(20),"必填",不能为空 
        /// </summary>
        public string fromArea { get; set; }
        /// <summary>
        /// 终点区域,string(20),"必填",不能为空 
        /// </summary>
        public string toArea { get; set; }
        /// <summary>
        /// 等待点等待时间
        /// </summary>
        public int waitTime { get; set; }
        /// <summary>
        /// "任务类型,string(50) ,"insert"增加,"update"更新,"delete"删除,必填"
        /// </summary>
        public string type { get; set; }

        public TaskSplitModel()
        {
            SeriaNo = 0;
            agvTaskType = 0;
            waitTime = 0;
        }
    }
}