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);
| }
| }
|
|