zhaojs
2023-08-22 b054051ba0ae15006835913c5d8da70490c25db0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
 
namespace app\api\model;
 
use think\Model;
 
/**
 * 专辑管理
 */
class Album extends Model
{
     // 表名
     protected $name = 'album';
 
     public function anchor()
     {
         return $this->belongsTo('app\api\model\AlbumAuthorInfo', 'uid', 'uid', [], 'LEFT')->setEagerlyType(0);
     }
}