| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- /**
- *
- * @copyright ©2020 点小铺
- * @author hanj
- * @link: https://dyuit.com
- * Created by VSCode
- */
- namespace app\common\model;
- /**
- * 文件库模型
- * Class UploadFile
- * @package app\common\model
- */
- class UploadFile extends BaseModel
- {
- protected $name = 'upload_file';
- protected $updateTime = false;
- protected $deleteTime = false;
- protected $append = ['file_path'];
- /**
- * 关联文件库分组表
- * @return \think\model\relation\BelongsTo
- */
- public function uploadGroup()
- {
- return $this->belongsTo('UploadGroup', 'group_id');
- }
- /**
- * 获取图片完整路径
- * @param $value
- * @param $data
- * @return string
- */
- public function getFilePathAttr($value, $data)
- {
- if ($data['storage'] === 'local') {
- return self::$base_url . 'uploads/' . $data['file_name'];
- }
- return $data['file_url'] . '/' . $data['file_name'];
- }
- /**
- * 文件详情
- * @param $file_id
- * @return null|static
- * @throws \think\exception\DbException
- */
- public static function detail($file_id)
- {
- return self::get($file_id);
- }
- /**
- * 根据文件名查询文件id
- * @param $fileName
- * @return mixed
- */
- public static function getFildIdByName($fileName)
- {
- return (new static)->where(['file_name' => $fileName])->value('file_id');
- }
- /**
- * 查询文件id
- * @param $fileId
- * @return mixed
- */
- public static function getFileName($fileId)
- {
- return (new static)->where(['file_id' => $fileId])->value('file_name');
- }
- /**
- * 添加新记录
- * @param $data
- * @return false|int
- */
- public function add($data)
- {
- $data['wxapp_id'] = self::$wxapp_id;
- return $this->save($data);
- }
- }
|