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