<?php namespace app\common\model\wholesaler; use cores\BaseModel; class Set extends BaseModel { // 定义表名 protected $name = 'wholesaler_set'; // 定义主键 protected $pk = 'id'; /** * @notes:详情 * @return static|array|null * @author: wanghousheng */ public static function detail() { return static::get([]); } }