| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%mch_setting}}".
- *
- * @property integer $id
- * @property integer $mch_id
- * @property integer $store_id
- * @property integer $is_share
- * @property float $first
- * @property float $second
- * @property float $third
- * @property string $first_name
- * @property string $second_name
- * @property string $third_name
- * @property integer $price_type
- * @property integer $is_rebate
- */
- class MchSetting extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%mch_setting}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['mch_id', 'store_id', 'is_share', 'price_type', 'is_rebate'], 'integer'],
- [['first', 'second', 'third'], 'number'],
- [['first_name', 'second_name', 'third_name'], 'string', 'max' => 255],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'mch_id' => 'Mch ID',
- 'store_id' => 'Store ID',
- 'is_share' => '是否开启分销 0--不开启 1--开启',
- 'first' => '一级佣金比例',
- 'second' => '二级佣金比例',
- 'third' => '三级佣金比例',
- 'first_name' => '一级名称',
- 'second_name' => '二级名称',
- 'third_name' => '三级名称',
- 'price_type' => '佣金配比',
- 'is_rebate' => '是否开启自购返利'
- ];
- }
- }
|