account_cert.php 983 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. return array
  3. (
  4. 'name' => '账户证书设置',
  5. 'order' => 'edate desc, id asc',
  6. 'struct' => array
  7. (
  8. 'account_id' => array
  9. (
  10. 'type' => 'int(11)',
  11. 'name' => '账户',
  12. ),
  13. 'platform_cert_id' => array
  14. (
  15. 'name' => '证书名',
  16. 'type' => 'int(11)',
  17. ),
  18. 'number' => array
  19. (
  20. 'name' => '证书序列号',
  21. 'type' => 'varchar(100)',
  22. ),
  23. 'public' => array
  24. (
  25. 'name' => '公钥内容',
  26. 'type' => 'varchar(3000)',
  27. ),
  28. 'private' => array
  29. (
  30. 'name' => '私钥内容',
  31. 'type' => 'varchar(3000)',
  32. ),
  33. 'edate' => array
  34. (
  35. 'name' => '过期时间',
  36. 'type' => 'int(11)',
  37. ),
  38. ),
  39. );