#ifndef COMMON_H
#define COMMON_H
#include <iostream>
#include <string>
/**
* @brief GetCurrentTime 获取当前时间
* @return
*/
std::string getCurrentTimeString();
std::string getCurrentShortTimeString();
#endif