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

17 lines
598 B

  1. using BPA.Helper;
  2. namespace BPASmartClient.FoodStationTest.Model.Bom
  3. {
  4. public class BomMaterial : NotifyBase
  5. {
  6. public int Count { get { return _count; } set { _count = value; OnPropertyChanged(); } }
  7. public int _count { get; set; }
  8. public string MaterialCode { get { return _materialCode; } set { _materialCode = value; OnPropertyChanged(); } }
  9. private string _materialCode = "";
  10. public string MaterialName { get { return _materialName; } set { _materialName = value; OnPropertyChanged(); } }
  11. private string _materialName = "";
  12. }
  13. }