Files
mir_server/Gateway/common/db/table_defs.h
aixianling 5c9f1dae4a init
2025-01-09 17:45:40 +08:00

15 lines
160 B
C

#ifndef _TABLE_DEFS_H_
#define _TABLE_DEFS_H_
// 数据库字段类型
enum DB_FILED_TYPE {
ftInt = 0,
ftDouble,
ftString,
ftInt64,
ftBlob,
ftCount,
};
#endif