hasOne(Account::class, 'id', 'account_id'); } public static function typeText(): array { return [ self::TYPE_IN => '上班', self::TYPE_OUT => '下班', ]; } public static function statusText(): array { return [ self::STATUS_TODO => '待审核', self::STATUS_YES => '审核通过', self::STATUS_NO => '审核拒绝', ]; } }