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
572 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.domain
{
public class VisionSetting
{
/// <summary>
/// 自增编号
/// </summary>
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
/// <summary>
/// 视觉编号
/// </summary>
public string VisionID { get; set; }
/// <summary>
/// 机械臂所属AMR编号
/// </summary>
public string AMRGUID { get; set; }
}
}