You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
887 B

<?php
namespace app\models;
use Yii;
/**
* This is the model class for table "{{%mch_plugin}}".
*
* @property integer $id
* @property integer $mch_id
* @property integer $store_id
* @property integer $is_share
*/
class MchPlugin extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%mch_plugin}}';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['mch_id', 'store_id', 'is_share'], 'integer'],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'mch_id' => 'Mch ID',
'store_id' => 'Store ID',
'is_share' => '是否开启分销 0--不开启 1--开启',
];
}
}