AdoSmartOpsEntities.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. namespace Admin.NET.Plugin.AiDOP.Entity;
  2. /// <summary>
  3. /// 智慧运营看板订单查询表。
  4. /// </summary>
  5. [IgnoreTable]
  6. [SugarTable("ado_order", "智慧运营看板订单查询表")]
  7. public class AdoOrder
  8. {
  9. [SugarColumn(ColumnName = "Id", ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = false, ColumnDataType = "bigint")]
  10. public long Id { get; set; }
  11. [SugarColumn(ColumnName = "Product", ColumnDescription = "产品", IsNullable = true, Length = 200)]
  12. public string? Product { get; set; }
  13. [SugarColumn(ColumnName = "OrderNo", ColumnDescription = "订单号", IsNullable = true, Length = 100)]
  14. public string? OrderNo { get; set; }
  15. }
  16. /// <summary>
  17. /// 智慧运营看板计划查询表。
  18. /// </summary>
  19. [IgnoreTable]
  20. [SugarTable("ado_plan", "智慧运营看板计划查询表")]
  21. public class AdoPlan
  22. {
  23. [SugarColumn(ColumnName = "Id", ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = false, ColumnDataType = "bigint")]
  24. public long Id { get; set; }
  25. [SugarColumn(ColumnName = "ProductName", ColumnDescription = "产品名称", IsNullable = true, Length = 200)]
  26. public string? ProductName { get; set; }
  27. }
  28. /// <summary>
  29. /// 智慧运营看板工单查询表。
  30. /// </summary>
  31. [IgnoreTable]
  32. [SugarTable("ado_work_order", "智慧运营看板工单查询表")]
  33. public class AdoWorkOrder
  34. {
  35. [SugarColumn(ColumnName = "Id", ColumnDescription = "主键", IsPrimaryKey = true, IsIdentity = false, ColumnDataType = "bigint")]
  36. public long Id { get; set; }
  37. [SugarColumn(ColumnName = "Product", ColumnDescription = "产品", IsNullable = true, Length = 200)]
  38. public string? Product { get; set; }
  39. [SugarColumn(ColumnName = "WorkCenter", ColumnDescription = "工作中心", IsNullable = true, Length = 100)]
  40. public string? WorkCenter { get; set; }
  41. }