终端一体化运控平台
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.
 
 
 

22 lines
718 B

  1. using BPA.Helper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.JXJFoodSmallStation.Model.Bom
  8. {
  9. public class BomMaterial:NotifyBase
  10. {
  11. public int Count { get { return _count; } set { _count = value; OnPropertyChanged(); } }
  12. public int _count { get; set; }
  13. public string MaterialCode { get { return _materialCode; }set { _materialCode = value;OnPropertyChanged(); } }
  14. private string _materialCode="";
  15. public string MaterialName { get { return _materialName; } set { _materialName = value; OnPropertyChanged(); } }
  16. private string _materialName="";
  17. }
  18. }