| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\plugins\adopt\models;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- class Monitor extends ActiveRecord
- {
- public function behaviors()
- {
- return [
- [
- // 自动更新创建和更新时间
- 'class' => TimestampBehavior::class,
- 'value' => time()
- ]
- ];
- }
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%monitor}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['store_id', 'status','created_at','updated_at'], 'integer'],
- [['store_id','name','serial'], 'required'],
- [['name','serial','code','cover_pic'], 'string'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => 'Store ID',
- 'name' => '设备名称',
- 'serial' => '序列号',
- 'code' => '验证码',
- 'status' => '在线状态',
- 'created_at' => '首次绑定时间',
- 'cover_pic' => '封面图片',
- 'updated_at' => '更新时间'
- ];
- }
- }
|