终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 line
877 B

  1. using BPASmart.Model;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmart.RecipeManagement.Globle
  9. {
  10. public class GlobleData
  11. {
  12. /// <summary>
  13. /// 原料传值
  14. /// </summary>
  15. public static RecipeMaterials ChangeMaterail = new RecipeMaterials();
  16. /// <summary>
  17. /// 修改配方传值
  18. /// </summary>
  19. public static Recipes ChangeRecipes = new Recipes();
  20. /// <summary>
  21. ///
  22. /// </summary>
  23. public static ObservableCollection<Order> orders { get; set; } = new ObservableCollection<Order>();
  24. /// <summary>
  25. /// 配方的工艺流程传值
  26. /// </summary>
  27. public static Recipes recipeTechnologyProcess = new Recipes();
  28. }
  29. }