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

OrderLocInfo.cs 757 B

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
1234567891011121314151617181920212223242526272829303132
  1. using BPA.Message;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPASmartClient.MorkM
  8. {
  9. public class OrderLocInfo
  10. {
  11. public string SuborderId { get; set; }
  12. public ushort Loc { get; set; }
  13. public ushort RecipeNumber { get; set; }
  14. public int BatchingId { get; set; }
  15. public string GoodName { get; set; }
  16. public bool MakeType { get; set; }
  17. }
  18. /// <summary>
  19. /// 存储订单中素菜荤菜数量
  20. /// </summary>
  21. public class OrderInformation
  22. {
  23. public int VegatableNumber { get; set; }
  24. public int DishNum { get; set; }
  25. // public GoodsMakeType MakeType { get; set; }
  26. }
  27. }