parent
727f1a6b60
commit
3a3ece1625
@ -0,0 +1,14 @@
|
|||||||
|
#include "employee.h"
|
||||||
|
Employee::Employee(int id, string name, int dId) {
|
||||||
|
this->m_Id = id;
|
||||||
|
this->m_Name = name;
|
||||||
|
this->m_DeptId = dId;
|
||||||
|
}
|
||||||
|
void Employee::showInfo() // 打印职工信息
|
||||||
|
{
|
||||||
|
cout << "职工编号:" << this->m_Id << "\t职工姓名:" << this->m_Name
|
||||||
|
<< "\t岗位:" << this->getDeptName() << "\t岗位职责:完成经理交给的任务"
|
||||||
|
<< endl;
|
||||||
|
}
|
||||||
|
|
||||||
|
string Employee::getDeptName() { return string("员工"); }
|
Loading…
Reference in new issue