Village.php 248 B

1234567891011121314151617
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class Village extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'pid' => 'int',
  10. 'name' => 'string',
  11. 'sort' => 'int',
  12. ];
  13. }