搭建PVB架构,实现前端的基础布局、菜单、表格、图示等功能

This commit is contained in:
lixiaoyuan
2025-08-20 19:00:22 +08:00
parent 5de7687bcc
commit 7e965b6fb4
142 changed files with 28270 additions and 411 deletions

20
src/common/Crypto.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef _Crypto_H_
#define _Crypto_H_
#include <iostream>
#include <vector>
#include <cstdlib>
#include <string>
using namespace std;
class Crypto
{
public:
static string md5(string src);
};
#endif // ! _Crypto_H_