generated from wenjy/SlnMesnac
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
590 B
C#
27 lines
590 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SlnMesnac.Model.domain
|
|
{
|
|
public class ManipulatorSetting
|
|
{
|
|
/// <summary>
|
|
/// 自增编号
|
|
/// </summary>
|
|
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
public int ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机械臂编号
|
|
/// </summary>
|
|
public string ManipulatorNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 机械臂所属AGV编号
|
|
/// </summary>
|
|
public string RelatedAGVNo { get; set; }
|
|
|
|
}
|
|
}
|