终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

23 rader
609 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmart.Model
  8. {
  9. public class LocalMaterails
  10. {
  11. /// <summary>
  12. /// 本地物料
  13. /// </summary>
  14. public ObservableCollection<RecipeMaterials> locaMaterails { get; set; } = new ObservableCollection<RecipeMaterials>();
  15. /// <summary>
  16. /// 自定义属性
  17. /// </summary>
  18. public ObservableCollection<Property> PorpertyCollections = new ObservableCollection<Property>();
  19. }
  20. }