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.
67 lines
1.5 KiB
67 lines
1.5 KiB
<?php
|
|
|
|
namespace app\model;
|
|
|
|
/**
|
|
* @desc 文件表
|
|
* @property int id
|
|
* @property int type
|
|
* @property string path
|
|
* @property string create_time
|
|
*/
|
|
class FileModel extends BaseModel
|
|
{
|
|
protected $name = 'file';
|
|
protected $pk = 'id';
|
|
|
|
|
|
/**
|
|
* @desc 根据主键获取
|
|
* @param $id
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public static function getById($id)
|
|
{
|
|
$self = self::where('id', $id)->find();
|
|
if(empty($self)){
|
|
return [];
|
|
}
|
|
return $self->toArray();
|
|
}
|
|
|
|
/**
|
|
* @desc 获取文件路径
|
|
* @param $id
|
|
* @return mixed|string
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public static function getFilePath($id)
|
|
{
|
|
$self = self::where('id', $id)->find();
|
|
if(!empty($self)){
|
|
return $self->path;
|
|
}
|
|
|
|
return '';
|
|
}
|
|
/**
|
|
* @desc 将文件入库
|
|
* @param $path
|
|
* @param int $type
|
|
* @return int
|
|
*/
|
|
public static function insertFile($path, int $type = 1)
|
|
{
|
|
$self = new self;
|
|
$self->type = $type;
|
|
$self->path = $path;
|
|
$self->create_time = date('Y-m-d H:i:s');
|
|
$self->save();
|
|
return $self->id;
|
|
}
|
|
}
|