1234567891011121314151617 |
- <?php
- namespace app\common\widget;
- use yii\base\Widget;
- use Yii;
- class FieldWidget extends Widget
- {
- public $table_name;//表名
- public $field;//字段名称
- public $field_type;//字段类型
- public $is_system;//是否主表字段
- public $old_field;//原字段名
- public $max_length;
- }
|