| 12345678910111213141516171819202122232425262728293031 |
- #pragma once
- #include "../pch/pch.h"
- /**
- * 桌位的ITEM,都用这个
- */
- class CZhengcanTableItemUI : public CVerticalLayoutUI
- {
- public:
- CZhengcanTableItemUI();
- ~CZhengcanTableItemUI();
- void DoEvent(TEventUI& event);
- 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);
- //刷新显示
- void UpdateShow();
- private:
- std::string m_table_id;
- std::string m_table_name;
- std::string m_type_id;
- std::string m_status;
- std::string m_order_init_time;
- std::string m_from_type;
- std::string m_order_status;
- };
|