Person.php 173 B

12345678910111213141516
  1. <?php
  2. namespace app\admin\model;
  3. use think\Model;
  4. /**
  5. * Description of Person
  6. *
  7. * @author sgq
  8. */
  9. class Person extends Model {
  10. protected $table = "un_person";
  11. }