| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- namespace addons\RfDevTool\common\models;
- use yii\base\Model;
- /**
- * Class MigrateForm
- * @package addons\RfDevTool\common\models
- * @author jianyan74 <751393839@qq.com>
- */
- class MigrateForm extends Model
- {
- public $addon;
- public $tables = [];
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
- [['tables', 'addon'], 'required'],
- [['tables'], 'safe'],
- ];
- }
- /**
- * @return array
- */
- public function attributeLabels()
- {
- return [
- 'tables' => '表名',
- 'addon' => '系统/插件',
- ];
- }
- }
|