ProductDesignRouting.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. /// <summary>绉熸埛ID锛堝绉熸埛闅旂锛?/summary>
  31. [SugarColumn(ColumnName = "tenant_id", IsNullable = true)]
  32. public long? TenantId { get; set; }
  33. }