终端一体化运控平台
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

17 строки
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. }