account_setting.php 460 B

12345678910111213141516171819202122
  1. <?php
  2. return [
  3. 'name' => '账户设置',
  4. 'order' => 'id asc',
  5. 'struct' => [
  6. 'account_id' => [
  7. 'type' => 'int(11)',
  8. 'name' => '账户',
  9. ],
  10. 'platform_setting_id' => [
  11. 'name' => '参数名',
  12. 'type' => 'int(11)',
  13. ],
  14. 'value' => [
  15. 'name' => '参数值',
  16. 'type' => 'varchar(3000)',
  17. ],
  18. ],
  19. ];