| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- use yii\behaviors\TimestampBehavior;
- use yii\db\ActiveRecord;
- class NewIntegralSetting extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%new_integral_setting}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['store_id'], 'integer'],
- ];
- }
- // public function behaviors()
- // {
- // return [
- // [
- // 'class' => TimestampBehavior::class,
- // 'attributes' => [
- // ActiveRecord::EVENT_BEFORE_INSERT => ['updated_at', 'created_at'],
- // ActiveRecord::EVENT_BEFORE_UPDATE => 'updated_at'
- // ]
- // ]
- // ];
- // }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => '商城id',
- 'polling_img' => '轮播图',
- 'explain' => '积分说明',
- 'created_at' => '创建时间',
- ];
- }
- }
|