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.

67 lines
1.7 KiB
C#

using SqlSugar;
namespace ZJ_BYD.Model
{
/// <summary>
/// 前置参数
/// </summary>
[SugarTable("t_aheadpara")]
public class T_AheadPara : BaseModel
{
/// <summary>
/// 工控机标识
/// </summary>
[SugarColumn(ColumnName = "ipcid")]
public string IpcId { get; set; }
/// <summary>
/// 产线编码
/// </summary>
[SugarColumn(ColumnName = "linecode")]
public string LineCode { get; set; }
/// <summary>
/// 分类,用于区分线路
/// </summary>
[SugarColumn(ColumnName = "category")]
public string Category { get; set; }
/// <summary>
/// 工位编码
/// </summary>
[SugarColumn(ColumnName = "stationcode")]
public string StationCode { get; set; }
/// <summary>
/// 机型编码
/// </summary>
[SugarColumn(ColumnName = "machinetypecode")]
public string MachineTypeCode { get; set; }
/// <summary>
/// 上工位编码
/// </summary>
[SugarColumn(ColumnName = "laststationcode")]
public string LastStationCode { get; set; }
/// <summary>
/// 在线模式查询的参数名称
/// </summary>
[SugarColumn(ColumnName = "pointcode")]
public string PointCode { get; set; }
/// <summary>
/// 离线模式查询的参数名,即结果表的字段名称
/// </summary>
[SugarColumn(ColumnName = "resultcolname")]
public string ResultColName { get; set; }
/// <summary>
/// 是否被删除
/// </summary>
[SugarColumn(ColumnName = "isdeleted")]
public bool IsDeleted { get; set; }
}
}