| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- /**
- * 厦门云联储网络科技有限公司
- * https://www.baokuaiyun.com
- * Copyright (c) 2023 爆块云 All rights reserved.
- */
- namespace app\models;
- use app\constants\OptionSetting;
- use app\modules\alliance\models\CurrencyForm;
- use app\plugins\scanCodePay\models\Order as ScanCodePayOrder;
- use app\plugins\scanCodePay\models\Order as ScanOrder;
- use yii\db\ActiveRecord;
- use yii\behaviors\TimestampBehavior;
- use Yii;
- use yii\helpers\Json;
- /**
- * This is the model class for table "{{%currencyexplore}}".
- *
- * @property integer $id
- * @property string $name
- * @property string $image
- * @property integer $bases_num
- * @property integer $min_num
- * @property integer $max_num
- * @property integer $times
- * @property integer $new_bases_num
- */
- class currencyexplore extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%currencyexplore}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['bases_num', 'min_num', 'max_num', 'times','new_bases_num','id'], 'integer'],
- [['name'], 'string', 'max' => 255],
- [['image'], 'string'],
- ];
- }
- }
|