template_code.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. return [
  3. 'name' => '验证码设置',
  4. 'struct' => [
  5. 'template_id' => [
  6. 'type' => 'int(11)',
  7. 'name' => '模板',
  8. ],
  9. 'timeout' => [
  10. 'type' => 'int(11)',
  11. 'name' => '有效期',
  12. 'default' => '600',
  13. ],
  14. 'length' => [
  15. 'type' => 'int(11)',
  16. 'name' => '长度',
  17. 'default' => '4',
  18. ],
  19. 'type' => [
  20. 'type' => 'tinyint(1)',
  21. 'name' => '类型',
  22. 'default' => '1',
  23. 'value' => [
  24. 1 => '全数字',
  25. 2 => '小写字母',
  26. 3 => '大写字母',
  27. 4 => '大小写字母',
  28. 5 => '数字+大小写字母',
  29. ],
  30. ],
  31. 'total' => [
  32. 'type' => 'int(11)',
  33. 'name' => '最大发送次数',
  34. 'default' => '5',
  35. ],
  36. 'interval' => [
  37. 'type' => 'int(11)',
  38. 'name' => '发送间隔',
  39. 'default' => '60',
  40. ],
  41. ],
  42. ];