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