私はこのクラスを持っています
interface UserInterface
それで
abstract class user implements UserInterface
それから私は2つの子クラスを持っています
Class Teacher extends User
Class Parent extends User
今dtabaseに私は3つのテーブルを持っています
user table with id,password
teacher with FK and other stuff
parent with FK and other stuff
今、私はUserクラスを使用してログインをチェックしています。
私の問題は、従業員がログインすると、メモリ内のオブジェクトがユーザータイプになることです。どうすればEmployeeオブジェクトを取得できますか
私のモデルは間違っていて、別の方法で行う必要がありますか?