ProductDesignRouting.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. namespace Admin.NET.Plugin.AiDOP.Order;
  2. /// <summary>产品设计工艺路线明细</summary>
  3. [SugarTable("ado_product_design_routing", "产品设计工艺路线")]
  4. public class ProductDesignRouting
  5. {
  6. [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = false)]
  7. public long Id { get; set; }
  8. [SugarColumn(ColumnName = "ProductDesignId")]
  9. public long ProductDesignId { get; set; }
  10. [SugarColumn(ColumnName = "Seq", IsNullable = true)]
  11. public int? Seq { get; set; }
  12. [SugarColumn(ColumnName = "OpName", Length = 128, IsNullable = true)]
  13. public string? OpName { get; set; }
  14. [SugarColumn(ColumnName = "OpCode", Length = 64, IsNullable = true)]
  15. public string? OpCode { get; set; }
  16. [SugarColumn(ColumnName = "ParentOpCode", Length = 64, IsNullable = true)]
  17. public string? ParentOpCode { get; set; }
  18. /// <summary>1=关键工序</summary>
  19. [SugarColumn(ColumnName = "IsKeyProcess", IsNullable = true)]
  20. public int? IsKeyProcess { get; set; }
  21. /// <summary>产线</summary>
  22. [SugarColumn(ColumnName = "ProductionLine", Length = 128, IsNullable = true)]
  23. public string? ProductionLine { get; set; }
  24. /// <summary>1=报工</summary>
  25. [SugarColumn(ColumnName = "IsReport", IsNullable = true)]
  26. public int? IsReport { get; set; }
  27. /// <summary>路线编码</summary>
  28. [SugarColumn(ColumnName = "RouteCode", Length = 64, IsNullable = true)]
  29. public string? RouteCode { get; set; }
  30. }