AuthCompanyModel.php 239 B

123456789101112
  1. <?php
  2. namespace app\index\model;
  3. use think\Model;
  4. class AuthCompanyModel extends Model
  5. {
  6. protected $table='auth_company';
  7. public function getInfo($where){
  8. $info = $this->where($where)->find();
  9. return $info;
  10. }
  11. }