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.

58 lines
1.5 KiB
C#

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; }
/// <summary>
/// 模板名字
/// </summary>
[SugarColumn(ColumnName = "jobname")]
public string JobName { get; set; }
/// <summary>
/// 模板GUID
/// </summary>
[SugarColumn(ColumnName = "jobguid")]
public string JobGuid { get; set; }
/// <summary>
/// 模板对应的传送带编号
/// </summary>
[SugarColumn(ColumnName = "conveyorno")]
public string ConveyorNo { get; set; }
/// <summary>
/// 模板类型
/// </summary>
[SugarColumn(ColumnName = "jobtype")]
public string JobType { get; set; }
/// <summary>
/// 模板参数点位GUID
/// </summary>
[SugarColumn(ColumnName = "pointguid")]
public string PointGuid { get; set; }
/// <summary>
/// 模板参数点位名称
/// </summary>
[SugarColumn(ColumnName = "pointname")]
public string PointName { get; set; }
/// <summary>
/// 模板参数点位参数名
/// </summary>
[SugarColumn(ColumnName = "pointparamname")]
public string PointParamName { get; set; }
}
}