<?php namespace app\common\model; use think\Model; class UserRank extends Model { // 设置字段信息 protected $schema = [ 'id' => 'int', 'realname' => 'string', 'mobile' => 'string', 'partnumber' => 'int' ]; }