spec.php 624 B

1234567891011121314151617181920212223242526
  1. <?php
  2. return [
  3. 'name' => '接口规格设置',
  4. 'order' => 'sort asc',
  5. 'struct' => [
  6. 'app_func_id' => [
  7. 'name' => '功能id',
  8. 'type' => 'int(11)',
  9. ],
  10. 'name' => [
  11. 'name' => '规格名称',
  12. 'type' => 'varchar(200)',
  13. ],
  14. 'sort' => [
  15. 'name' => '排序',
  16. 'type' => 'int(11)',
  17. 'default' => '1',
  18. ],
  19. 'state' => [
  20. 'name' => '数据状态',
  21. 'type' => 'tinyint(1)',
  22. 'default' => '1',
  23. ],
  24. ],
  25. ];