团餐订单
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.
 
 

43 lines
957 B

  1. using BPA.KitChen.GroupMealOrder.Core.Enum;
  2. using NPOI.SS.Formula.Functions;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.KitChen.GroupMealOrder.Application.Service.WeighOrder.Dtos
  9. {
  10. public class DiningPlateDto
  11. {
  12. public string WeighOrderId { get; set; }
  13. /// <summary>
  14. /// 餐盘信息
  15. /// </summary>
  16. public string DiningPlateId { get; set; }
  17. /// <summary>
  18. /// 是否占用
  19. /// </summary>
  20. public bool IsOccupy { get; set; }
  21. }
  22. public class DiningPlateInfoDto
  23. {
  24. public string Id { get; set; }
  25. /// <summary>
  26. /// 二维码
  27. /// </summary>
  28. public string QRCode { get; set; }
  29. /// <summary>
  30. /// 芯片码
  31. /// </summary>
  32. public string ChipCode { get; set; }
  33. public int Status { get; set; }
  34. }
  35. }