#include "employee.h" //构造函数 Employee::Employee(int id, std::string name, int dept_id) { } //显示个人信息 void Employee::showInfo() { } //获取岗位名称 std::string Employee::getDeptName() { }