['type' => 'string_60', 'title' => '分类名称'], 'remark' => ['type' => 'mediumtext', 'title' => '备注'], ]; } public function init() { Eav::table($this->schema)->insert([ [ 'name' => '默认分类', 'remark' => '', 'created_at' => time(), 'updated_at' => time() ], [ 'name' => '其它分类', 'remark' => '', 'created_at' => time(), 'updated_at' => time() ], ]); } public function run() { $this->schema = 'dep_inter_template_category'; $this->title = '接口模板分类表'; $this->start(); } }