30 Star 241 Fork 87

店滴云物联网开源框架 / ddiot-茶室民宿酒店棋牌室管理系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
behavior.md 761 Bytes
一键复制 编辑 原始数据 按行查看 历史
wangchunsheng 提交于 2022-11-01 19:09 . 完善部分文档

行为

数据存储行为

 \common\behaviors\SaveBehavior

行为属性

updatedAttribute

数据最后更新时间

createdAttribute

数据创建时间

time_type

行为时间类型
<?php

namespace addons\diandi_website\models;

use Yii;

class ProductPrice extends \yii\db\ActiveRecord
{
    /**
     * 行为.
     */
    public function behaviors()
    {
        /*自动添加创建和修改时间*/
        return [
            [
                'class' => \common\behaviors\SaveBehavior::className(),
                'updatedAttribute' => 'updated_at',
                'createdAttribute' => 'created_at',
                'time_type' => 'datetime'
            ],
        ];
    }

   
}
PHP
1
https://gitee.com/wayfirer/ddiot.git
git@gitee.com:wayfirer/ddiot.git
wayfirer
ddiot
ddiot-茶室民宿酒店棋牌室管理系统
main

搜索帮助

53164aa7 5694891 3bd8fe86 5694891