<?php
|
|
namespace app\model;
|
|
|
|
use think\Model;
|
|
|
|
class Message extends Model
|
|
{
|
|
protected $table = 'messages';
|
|
protected $pk = 'id';
|
|
protected $autoWriteTimestamp = true;
|
|
protected $createTime = 'created_at';
|
|
protected $updateTime = false;
|
|
}
|