FastMovieAI 二开基线 v1.0 (完整源码)
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
namespace plugin\shortplay\app\model;
|
||||
|
||||
use app\model\Basic;
|
||||
use plugin\control\expose\helper\Uploads;
|
||||
use plugin\model\app\model\PluginModelTask;
|
||||
use plugin\shortplay\utils\enum\ActorStatus;
|
||||
|
||||
class PluginShortplayActorCharacterLook extends Basic
|
||||
{
|
||||
public function getHeadimgAttr($value, $data)
|
||||
{
|
||||
return Uploads::url($data['channels_uid'], $value);
|
||||
}
|
||||
public function setHeadimgAttr($value, $data)
|
||||
{
|
||||
return Uploads::path($data['channels_uid'], $value);
|
||||
}
|
||||
public function getThreeViewImageAttr($value, $data)
|
||||
{
|
||||
return Uploads::url($data['channels_uid'], $value);
|
||||
}
|
||||
public function setThreeViewImageAttr($value, $data)
|
||||
{
|
||||
return Uploads::path($data['channels_uid'], $value);
|
||||
}
|
||||
public function characterLook()
|
||||
{
|
||||
return $this->hasOne(PluginShortplayCharacterLook::class, 'id', 'character_look_id');
|
||||
}
|
||||
public static function processing($where = [])
|
||||
{
|
||||
return self::where($where)->whereIn('status', [ActorStatus::INITIALIZING['value'], ActorStatus::PENDING['value']])->count();
|
||||
}
|
||||
public static function onAfterRead($model)
|
||||
{
|
||||
$model->status_enum = ActorStatus::get($model->status);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user