using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.domain
{
public class ManipulatorSetting
{
///
/// 自增编号
///
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
///
/// 机械臂编号
///
public string ManipulatorNo { get; set; }
///
/// 机械臂所属AGV编号
///
public string RelatedAGVNo { get; set; }
}
}