终端一体化运控平台
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 

26 Zeilen
816 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.MorkS.Model
  8. {
  9. internal class GoodsModel: NotifyBase
  10. {
  11. private string _orderNum { get; set; }
  12. public string OrderNum { get { return _orderNum; } set { _orderNum = value;OnPropertyChanged(); } }
  13. private string _goodsName;
  14. public string GoodsName { get { return _goodsName; } set { _goodsName = value;OnPropertyChanged(); } }
  15. private int _bowlLoc;
  16. public int BowlLoc { get { return _bowlLoc; } set { _bowlLoc = value; OnPropertyChanged(); } }
  17. private int _noodlesLoc;
  18. public int NoodlesLoc { get { return _noodlesLoc; } set { _noodlesLoc = value; OnPropertyChanged(); } }
  19. }
  20. }