TableInfo.h 288 B

12345678910111213
  1. #ifndef __TABLE_INFO__
  2. #define __TABLE_INFO__
  3. // 联系类型表;
  4. typedef struct __ST_MODINFO__
  5. {
  6. std::string strName; // 模块名;
  7. std::string strAddress; // 模块地址;
  8. std::string strVersion; // 模块版本;
  9. bool _check; // 是否选中;
  10. }STModInfo, *pSTModInfo;
  11. #endif