This commit is contained in:
aozhiwei 2020-06-19 15:14:46 +08:00
parent 9e3e8d4011
commit ed628cf58c
2 changed files with 10 additions and 0 deletions

View File

@ -149,3 +149,10 @@ void DBHelper::AddEvent(const std::string& sender_id,
crc32_code
);
}
void DBHelper::SetEventStatus(long long idx,
const std::string& target_id,
int status)
{
}

View File

@ -27,5 +27,8 @@ class DBHelper : public a8::Singleton<DBHelper>
const std::string& target_id,
const std::string& event_name,
const std::string& event_data);
void SetEventStatus(long long idx,
const std::string& target_id,
int status);
};