TableInfo.h 253 B

123456789101112
  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. }STModInfo, *pSTModInfo;
  10. #endif