notify.php 687 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. return array
  3. (
  4. 'name' => '通知记录',
  5. 'store' => 'log',
  6. 'struct' => array
  7. (
  8. 'template_id' => array
  9. (
  10. 'type' => 'int(11)',
  11. 'name' => '模板',
  12. ),
  13. 'account' => array
  14. (
  15. 'type' => 'varchar(50)',
  16. 'name' => '账户',
  17. ),
  18. 'record' => array
  19. (
  20. 'type' => 'text(255)',
  21. 'name' => '返回记录',
  22. ),
  23. 'content' => array
  24. (
  25. 'type' => 'text(255)',
  26. 'name' => '发送内容',
  27. ),
  28. ),
  29. );