| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use Yii;
- use yii\behaviors\TimestampBehavior;
- /**
- * This is the model class for table "{{%goods_chain_level}}".
- *
- * @property integer $id
- * @property integer $goods_id
- * @property integer $is_open
- * @property integer $value
- * @property integer $type
- */
- class GoodsChainLevel extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%goods_chain_level}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['goods_id', 'is_open', 'type'], 'integer'],
- [['value'], 'string'],
- [['type'], 'default', 'value' => 1],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'goods_id' => 'Goods ID',
- 'is_open' => '是否开启',
- 'value' => '配置信息json',
- 'type' => '类型,1:固定金额, 2: 百分比',
- ];
- }
- }
|