CZhengcanTableItemUI.h 648 B

12345678910111213141516171819202122232425262728293031
  1. #pragma once
  2. #include "../pch/pch.h"
  3. /**
  4. * 桌位的ITEM,都用这个
  5. */
  6. class CZhengcanTableItemUI : public CVerticalLayoutUI
  7. {
  8. public:
  9. CZhengcanTableItemUI();
  10. ~CZhengcanTableItemUI();
  11. void DoEvent(TEventUI& event);
  12. void SetInfo(std::string table_id, std::string table_name, std::string type_id, std::string status, std::string order_init_time, std::string from_type, std::string order_status);
  13. //刷新显示
  14. void UpdateShow();
  15. private:
  16. std::string m_table_id;
  17. std::string m_table_name;
  18. std::string m_type_id;
  19. std::string m_status;
  20. std::string m_order_init_time;
  21. std::string m_from_type;
  22. std::string m_order_status;
  23. };