FieldWidget.php 312 B

1234567891011121314151617
  1. <?php
  2. namespace app\common\widget;
  3. use yii\base\Widget;
  4. use Yii;
  5. class FieldWidget extends Widget
  6. {
  7. public $table_name;//表名
  8. public $field;//字段名称
  9. public $field_type;//字段类型
  10. public $is_system;//是否主表字段
  11. public $old_field;//原字段名
  12. public $max_length;
  13. }