This commit is contained in:
chengxl
2025-11-03 09:36:36 +08:00
parent a46b995b03
commit 65ab2379f8
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace app\common;
use think\Model;
class UserReviewerInfo extends Model
{
// 绑定数据表(如果表名与模型名不一致需要指定)
protected $table = 't_user_reviewer_info';
// 允许批量赋值的字段(必须设置,否则批量更新会失败)
protected $fillable = ['reviewer_info_id','reviewer_id','major','country','test_from'];
}