TalentApi.php 286 B

12345678910111213141516171819
  1. <?php
  2. namespace app\enterprise\api;
  3. use app\enterprise\model\Talent;
  4. /**
  5. * Description of TalentApi
  6. *
  7. * @author sgq
  8. */
  9. class TalentApi {
  10. public static function getList($where = "") {
  11. $list = Talent::where($where)->select()->toArray();
  12. return $list;
  13. }
  14. }