Option.php 516 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace plugin\admin\app\model;
  3. /**
  4. * @property integer $id (主键)
  5. * @property string $name 键
  6. * @property mixed $value 值
  7. * @property string $created_at 创建时间
  8. * @property string $updated_at 更新时间
  9. */
  10. class Option extends Base
  11. {
  12. /**
  13. * The table associated with the model.
  14. *
  15. * @var string
  16. */
  17. protected $table = 'wa_options';
  18. /**
  19. * The primary key associated with the table.
  20. *
  21. * @var string
  22. */
  23. protected $primaryKey = 'id';
  24. }