终端一体化运控平台
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

BomMaterial.cs 598 B

há 1 ano
há 1 ano
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. }