openid.php 594 B

1234567891011121314151617181920212223242526
  1. <?php
  2. return [
  3. 'name' => 'openid表',
  4. 'partition' => 'Dever::call("manage/util.system")',
  5. 'struct' => [
  6. 'account_id' => [
  7. 'type' => 'int(11)',
  8. 'name' => '账户',
  9. ],
  10. 'env' => [
  11. 'name' => '运行环境',
  12. 'type' => 'tinyint(1)',
  13. ],
  14. 'uid' => [
  15. 'type' => 'int(11)',
  16. 'name' => '用户ID',
  17. ],
  18. 'openid' => [
  19. 'type' => 'varchar(60)',
  20. 'name' => 'openid',
  21. ],
  22. ],
  23. ];