Files
xk-api-yii/admin/models/Page.php

34 lines
756 B
PHP
Raw Normal View History

2024-09-19 11:32:39 +08:00
<?php
namespace admin\models;
/*
* ---------------------------------------
* 文章模型
* ---------------------------------------
*/
2024-12-19 19:20:27 +08:00
class Page extends \common\modelsgii\oldDb\Page
2024-09-19 11:32:39 +08:00
{
/**
* @inheritdoc
*/
public function behaviors()
{
return [
/**
* 写库和更新库时,时间自动完成
* 注意rules验证必填时可使用AttributeBehavior行为model的EVENT_BEFORE_VALIDATE事件
*/
'timestamp' => [
'class' => 'yii\behaviors\TimestampBehavior',
'createdAtAttribute' => 'create_time',
'updatedAtAttribute' => 'update_time',
'value' => time(),
],
];
}
}