TaskPreviewModel.cs 1.02 KB
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 任务预览
	/// </summary>
    public partial class TaskPreviewModel
    {
        /// <summary>
        /// 任务地图 string(20),RFID值 ,必填"
        /// </summary>
        public string TaskMap { 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; }


        public TaskPreviewModel()
        {
        }
    }
}