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.

26 lines
547 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SlnMesnac.Model.domain
{
public class AGVSetting
{
/// <summary>
/// 自增编号
/// </summary>
[SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
/// <summary>
/// AGV编号
/// </summary>
public string AGVNo { get; set; }
/// <summary>
/// AGV类型
/// </summary>
public string AGVType { get; set; }
}
}