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

26 lines
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. }