using System; using System.Collections.Generic; using System.Linq; using SqlSugar; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { /// /// 工艺路由 /// [SugarTable("Dt_ProcessRoute")] public class Dt_ProcessRoute : BaseEntity { /// /// 备 注:区域ID /// 默认值: /// [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注:设备类型 /// 默认值: /// [SugarColumn(ColumnName = "stationType")] public int stationType { get; set; } /// /// 备 注:设备编码 /// 默认值: /// [SugarColumn(ColumnName = "stationCode")] public string stationCode { get; set; } /// /// 备 注:下一工艺 /// 默认值: /// [SugarColumn(ColumnName = "NextProcessCode")] public string? NextProcessCode { get; set; } /// /// 备 注:区域描述 /// 默认值: /// [SugarColumn(ColumnName = "工艺时长")] public int? SpecialParameterDuration { get; set; } } }