zhaojs
2023-06-21 9af958fe484fb661e9461487b08321fee03615de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
 
namespace app\api\model;
 
use think\Model;
 
/**
 * 专辑作者管理
 */
class AlbumAuthorInfo extends Model
{
     // 表名
     protected $name = 'album_author_info';
 
     
}