Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- using BPASmart.Model;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmart.RecipeManagement.Globle
- {
- public class GlobleData
- {
- /// <summary>
- /// 原料传值
- /// </summary>
- public static RecipeMaterials ChangeMaterail = new RecipeMaterials();
-
- /// <summary>
- /// 修改配方传值
- /// </summary>
- public static Recipes ChangeRecipes = new Recipes();
-
- /// <summary>
- ///
- /// </summary>
- public static ObservableCollection<Order> orders { get; set; } = new ObservableCollection<Order>();
-
- /// <summary>
- /// 配方的工艺流程传值
- /// </summary>
- public static Recipes recipeTechnologyProcess = new Recipes();
- }
- }
|