using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace SlnMesnac.Model.domain { public class AGVJob { [SqlSugar.SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int ID { get; set; } /// /// 模板名字 /// [SugarColumn(ColumnName = "jobname")] public string JobName { get; set; } /// /// 模板GUID /// [SugarColumn(ColumnName = "jobguid")] public string JobGuid { get; set; } /// /// 模板对应的传送带编号 /// [SugarColumn(ColumnName = "conveyorno")] public string ConveyorNo { get; set; } /// /// 模板类型 /// [SugarColumn(ColumnName = "jobtype")] public string JobType { get; set; } /// /// 模板参数点位GUID /// [SugarColumn(ColumnName = "pointguid")] public string PointGuid { get; set; } /// /// 模板参数点位名称 /// [SugarColumn(ColumnName = "pointname")] public string PointName { get; set; } /// /// 模板参数点位参数名 /// [SugarColumn(ColumnName = "pointparamname")] public string PointParamName { get; set; } } }