employee.cpp 205 B

1234567891011121314151617181920212223
  1. #include "employee.h"
  2. //构造函数
  3. Employee::Employee(int id, std::string name, int dept_id)
  4. {
  5. }
  6. //显示个人信息
  7. void Employee::showInfo()
  8. {
  9. }
  10. //获取岗位名称
  11. std::string Employee::getDeptName()
  12. {
  13. }