📄 employee.h
字号:
#include<fstream>
#include<conio.h>
#include<string>
using namespace std;
struct employee
{
char password[12];//密码
char name[12];
char id_card[20];
char date[20];//创建日期
int accounts;//帐号
};
class Employee
{
private:
employee emp;
fstream file;
public:
Employee();
~Employee();
void view_record();
void change_password();
int landing();//返回帐号
void new_employee();
void input_password();
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -