| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- use Yii;
- /**
- * This is the model class for table "{{%bonus_pool_level}}".
- *
- * @property integer $id
- * @property integer $store_id
- * @property integer $pool_id
- * @property integer $money
- * @property integer $level_id
- * @property string $user_id
- * @property integer $is_send
- * @property integer $send_time
- * @property integer $created_at
- */
- class ReportForm extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%report_form}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- 'attributes' => [
- ActiveRecord::EVENT_BEFORE_INSERT => ['created_at'],
- ]
- ]
- ];
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['store_id', 'report_setting_id', 'required', 'sort', 'is_delete'], 'integer'],
- [['name','type','default','tip'], 'string'],
- [['created_at'], 'safe']
- ];
- }
- }
|