You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
388 B
25 lines
388 B
<?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([]);
|
|
}
|
|
|
|
} |