26 lines
595 B
PHP
Executable File
26 lines
595 B
PHP
Executable File
<?php
|
|
//declare(strict_types=1);
|
|
//namespace App\Repository;
|
|
//
|
|
//use App\Model\Qa\UploadQiniu;
|
|
//
|
|
//class UploadQiniuRepository
|
|
//{
|
|
// public static function getByIdd($uploadId): ?UploadQiniu
|
|
// {
|
|
// return UploadQiniu::query()
|
|
// ->where('id', $uploadId)
|
|
// ->where('status', UploadQiniu::STATUS_NORMAL)
|
|
// ->first();
|
|
// }
|
|
//
|
|
//
|
|
// public static function getListByIds($uploadIds)
|
|
// {
|
|
// return UploadQiniu::query()
|
|
// ->select(['id', 'url'])
|
|
// ->whereIn('id', $uploadIds)
|
|
// ->get();
|
|
// }
|
|
//}
|