zhaojs
2023-07-11 78b876af3e8647aae615de24ac7932a00cae06a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
 
namespace app\api\model;
 
use think\Model;
 
/**
 * 专辑作者关注
 */
class AlbumFollow extends Model
{
     // 表名
     protected $name = 'follow_album';
 
}