Files
tougao/application/common/UserReviewerInfo.php
chengxl 65ab2379f8 升级
2025-11-03 09:36:36 +08:00

13 lines
390 B
PHP

<?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'];
}