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.
24 lines
420 B
24 lines
420 B
<?php
|
|
|
|
namespace app\common\model;
|
|
|
|
/**
|
|
* 文件库分组模型
|
|
* Class UploadGroup
|
|
* @package app\common\model
|
|
*/
|
|
class UploadGroup extends BaseModel
|
|
{
|
|
protected $name = 'upload_group';
|
|
|
|
/**
|
|
* 分组详情
|
|
* @param $group_id
|
|
* @return null|static
|
|
* @throws \think\exception\DbException
|
|
*/
|
|
public static function detail($group_id) {
|
|
return self::get($group_id);
|
|
}
|
|
|
|
}
|
|
|