| 12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Created by PhpStorm.
- * User: ywl
- * Date: 2018/4/12
- * Time: 下午11:18
- */
- namespace App\User\Facades;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method static \App\User\Services\AttachmentService getAttachmentList(array $params=[]) 获取附件列表
- * @method static \App\User\Services\AttachmentService saveAttachment(array $params=[]) 保存附件
- * @method static \App\User\Services\AttachmentService delAttachment($id) 删除附件
- * @method static \App\User\Services\AttachmentService uploadImg($data, $fileExt, $selectFileName,$host) 上传图片
- * @method static \App\User\Services\AttachmentService upload($request) 上传文件
- * Class AttachmentFacade
- * @package App\User\Facades
- */
- class AttachmentFacade extends Facade
- {
- protected static function getFacadeAccessor()
- {
- return self::class;
- }
- }
|