// // Created by lensferno on 2022/3/30. // #ifndef WORK20220330_STAFF_H #define WORK20220330_STAFF_H #include #include "date/Date.h" class Staff { protected: std::string name; char sex; std::string phone; Date birthday; public: Staff(const std::string &name, char sex, const std::string &phone, const Date &birthday); Staff(const Staff &staff); Staff() = delete; std::string toString(); }; #endif //WORK20220330_STAFF_H