Files
orico-official-website/app/common/model/ArticleLeaveMessageBaseModel.php

32 lines
621 B
PHP

<?php
declare (strict_types = 1);
namespace app\common\model;
use think\Model;
/**
* @mixin \think\Model
*/
class ArticleLeaveMessageBaseModel extends Model
{
// 表名
protected $name = 'article_leave_message';
// 主键
protected $pk = 'id';
// 字段信息
protected $schema = [
'id' => 'int',
'article_id' => 'int',
'name' => 'string',
'email' => 'string',
'content' => 'string',
'ip' => 'string',
'user_agent' => 'string',
'is_audited' => 'int',
'created_at' => 'datetime',
];
}