account_sms.php 560 B

123456789101112131415161718192021222324
  1. <?php
  2. return [
  3. 'name' => '短信设置',
  4. 'struct' => [
  5. 'account_id' => [
  6. 'type' => 'int(11)',
  7. 'name' => '账户',
  8. ],
  9. 'template_id' => [
  10. 'type' => 'int(11)',
  11. 'name' => '消息模板',
  12. 'value' => 'msg/template',
  13. ],
  14. 'code' => [
  15. 'type' => 'varchar(50)',
  16. 'name' => '短信模板编码',
  17. ],
  18. ],
  19. 'index' => [
  20. 'search' => 'account_id,template_id',
  21. ],
  22. ];