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