| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- namespace Admin.NET.Plugin.AiDOP.Order;
- /// <summary>产品设计工艺路线明细</summary>
- [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; }
- /// <summary>1=关键工序</summary>
- [SugarColumn(ColumnName = "IsKeyProcess", IsNullable = true)]
- public int? IsKeyProcess { get; set; }
- /// <summary>产线</summary>
- [SugarColumn(ColumnName = "ProductionLine", Length = 128, IsNullable = true)]
- public string? ProductionLine { get; set; }
- /// <summary>1=报工</summary>
- [SugarColumn(ColumnName = "IsReport", IsNullable = true)]
- public int? IsReport { get; set; }
- /// <summary>路线编码</summary>
- [SugarColumn(ColumnName = "RouteCode", Length = 64, IsNullable = true)]
- public string? RouteCode { get; set; }
- }
|