| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- /**
- * This is the model class for table "{{%q_and_a_ad_setting}}".
- *
- * @property int $id
- * @property int $store_id
- * @property int $award_integral
- * @property int $see_num
- * @property string $first_commission
- * @property string $second_commission
- * @property string $third_commission
- * @property string $adpid
- * @property int $updated_at
- */
- class ReportSetting extends \yii\db\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%report_setting}}';
- }
- public function behaviors()
- {
- return [
- [
- 'class' => TimestampBehavior::class,
- 'attributes' => [
- ActiveRecord::EVENT_BEFORE_INSERT => ['updated_at'],
- ]
- ]
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['store_id', 'form_name', 'dividend_day', 'first_commission','second_commission','third_commission'], 'required'],
- [['store_id', 'first_commission', 'second_commission', 'third_commission', 'updated_at'], 'safe'],
- [['store_id', 'dividend_day', 'auto_send_day', 'is_auto_send', 'is_share_self'], 'integer'],
- [['form_name'], 'string'],
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => 'Store ID',
- 'dividend_day' => '分红周期',
- 'auto_send_day' => '自动发放时间',
- 'first_commission' => '一级分销',
- 'second_commission' => '二级分销',
- 'third_commission' => '三级分销',
- 'is_auto_send' => '是否自动发放',
- 'is_share_self' => '是否分销内购',
- 'form_name' => '表单名称',
- 'updated_at' => '是否删除',
- ];
- }
- }
|