'int', 'name' => 'string', 'code' => 'string', 'type' => 'string', ]; /** * 根据类型获取列表 */ public static function getList($type) { return self::where('type', $type)->field('id,name,code')->select(); } }