Files
tougao/application/common/ArticleMain.php
2026-01-18 17:07:57 +08:00

13 lines
460 B
PHP

<?php
namespace app\common;
use think\Model;
class ArticleMain extends Model
{
// 绑定数据表(如果表名与模型名不一致需要指定)
protected $table = 't_article_main';
// 允许批量赋值的字段(必须设置,否则批量更新会失败)
protected $fillable = ['am_id','article_id','type','content','ami_id','amt_id','is_h1','is_h2','is_h3','sort','remark','ctime','state','is_proofread','proofread_time'];
}