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.

51 lines
1015 B

<?php
namespace app\models;
use Yii;
/**
* This is the model class for table "{{%lottery_setting}}".
*
* @property integer $id
* @property integer $store_id
* @property string $rule
* @property string $title
* @property string $type
*/
class LotterySetting extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public static function tableName()
{
return '{{%lottery_setting}}';
}
/**
* @inheritdoc
*/
public function rules()
{
return [
[['store_id', 'type'], 'integer'],
[['rule'], 'string', 'max' => 2000],
[['title'], 'string', 'max' => 255],
];
}
/**
* @inheritdoc
*/
public function attributeLabels()
{
return [
'id' => 'ID',
'store_id' => 'Store ID',
'rule' => '规则',
'title' => '小程序标题',
'type' => '是否强制'
];
}
}