终端一体化运控平台
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

BomMaterial.cs 598 B

1 yıl önce
1 yıl önce
12345678910111213141516
  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. }