LinkAgvRefreshModel.cs 525 Bytes
using System;
using System.ComponentModel.DataAnnotations.Schema;

namespace WebRepository
{
    /// <summary>
	/// 
	/// </summary>
    public partial class LinkAgvRefreshModel
    {
        /// <summary>
        /// "控制AGV编号,string(20),唯一,必填",
        /// </summary>
        public string agvNo { get; set; }
        /// <summary>
	    /// "建立单步控制连接,true(开启) false(关闭),bool 唯一,必填"
	    /// </summary>
        public bool? link { get; set; }
    }
}