namespace Admin.NET.Plugin.AiDOP.Order; /// 产品设计工艺路线明细 [SugarTable("ado_product_design_routing", "产品设计工艺路线")] public class ProductDesignRouting { [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = false)] public long Id { get; set; } [SugarColumn(ColumnName = "ProductDesignId")] public long ProductDesignId { get; set; } [SugarColumn(ColumnName = "Seq", IsNullable = true)] public int? Seq { get; set; } [SugarColumn(ColumnName = "OpName", Length = 128, IsNullable = true)] public string? OpName { get; set; } [SugarColumn(ColumnName = "OpCode", Length = 64, IsNullable = true)] public string? OpCode { get; set; } [SugarColumn(ColumnName = "ParentOpCode", Length = 64, IsNullable = true)] public string? ParentOpCode { get; set; } /// 1=关键工序 [SugarColumn(ColumnName = "IsKeyProcess", IsNullable = true)] public int? IsKeyProcess { get; set; } /// 产线 [SugarColumn(ColumnName = "ProductionLine", Length = 128, IsNullable = true)] public string? ProductionLine { get; set; } /// 1=报工 [SugarColumn(ColumnName = "IsReport", IsNullable = true)] public int? IsReport { get; set; } /// 路线编码 [SugarColumn(ColumnName = "RouteCode", Length = 64, IsNullable = true)] public string? RouteCode { get; set; } }