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.
 
 

38 lines
767 B

  1. using BPA.KitChen.GroupMeal.Core.Entity.Base;
  2. using BPA.KitChen.GroupMeal.Core.Enum;
  3. using SqlSugar;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace BPA.KitChen.GroupMeal.Core.Entity
  10. {
  11. /// <summary>
  12. /// 餐盘
  13. /// </summary>
  14. [SugarTable("bpa_diningplate")]
  15. public class BPA_DiningPlate: IBaseGroupIdEntity
  16. {
  17. /// <summary>
  18. /// 二维码
  19. /// </summary>
  20. public string QRCode { get; set; }
  21. /// <summary>
  22. /// 芯片码
  23. /// </summary>
  24. public string ChipCode { get; set; }
  25. /// <summary>
  26. /// 是否付费餐盘
  27. /// </summary>
  28. public bool IsPay { get; set; }
  29. }
  30. }