我有这门课
interface UserInterface
然后
abstract class user implements UserInterface
然后我有两个孩子班
Class Teacher extends User
Class Parent extends User
现在在数据库中我有三个表
user table with id,password
teacher with FK and other stuff
parent with FK and other stuff
现在我正在使用 User 类检查登录。
我的问题是,如果员工登录,那么内存中的对象将是用户类型。那么我怎样才能得到 Employee 对象
我的模型错了吗,我需要采取不同的方式吗?