zhaojs
2023-07-11 78b876af3e8647aae615de24ac7932a00cae06a3
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);
     }
}