13 lines
402 B
PHP
13 lines
402 B
PHP
<?php
|
|
namespace app\common;
|
|
|
|
use think\Model;
|
|
|
|
class ReviewerToJournal extends Model
|
|
{
|
|
// 绑定数据表(如果表名与模型名不一致需要指定)
|
|
protected $table = 't_reviewer_to_journal';
|
|
|
|
// 允许批量赋值的字段(必须设置,否则批量更新会失败)
|
|
protected $fillable = ['reviewer_id','journal_id','account','grade','is_yboard','ctime','state'];
|
|
} |