info.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. $mobile = Dever::rule('mobile');
  3. return array
  4. (
  5. # 表名
  6. 'name' => 'info',
  7. # 显示给用户看的名称
  8. 'lang' => '短信消息',
  9. 'menu' => false,
  10. # 数据结构
  11. 'struct' => array
  12. (
  13. 'id' => array
  14. (
  15. 'type' => 'int-11',
  16. 'name' => 'ID',
  17. 'default' => '',
  18. 'desc' => '',
  19. 'match' => 'is_numeric',
  20. 'search' => 'order',
  21. //'list' => true,
  22. ),
  23. 'mobile' => array
  24. (
  25. 'type' => 'varchar-32',
  26. 'name' => '手机号',
  27. 'default' => '',
  28. 'desc' => '请输入用户手机号',
  29. 'match' => $mobile,
  30. 'update' => 'text',
  31. 'search' => 'fulltext',
  32. 'list' => true,
  33. ),
  34. 'param' => array
  35. (
  36. 'type' => 'text-255',
  37. 'name' => '请求记录',
  38. 'default' => '',
  39. 'desc' => '请求记录',
  40. 'match' => 'is_string',
  41. 'update' => 'text',
  42. 'search' => 'fulltext',
  43. //'list' => 'table',
  44. //'modal' => '查看详情',
  45. ),
  46. 'result' => array
  47. (
  48. 'type' => 'text-255',
  49. 'name' => '发送记录',
  50. 'default' => '',
  51. 'desc' => '发送记录',
  52. 'match' => 'is_string',
  53. 'update' => 'text',
  54. 'search' => 'fulltext',
  55. 'list' => 'table',
  56. 'modal' => '查看详情',
  57. ),
  58. 'state' => array
  59. (
  60. 'type' => 'tinyint-1',
  61. 'name' => '状态',
  62. 'default' => '1',
  63. 'desc' => '请选择状态',
  64. 'match' => 'is_numeric',
  65. ),
  66. 'cdate' => array
  67. (
  68. 'type' => 'int-11',
  69. 'name' => '申请时间',
  70. 'match' => array('is_numeric', time()),
  71. 'desc' => '',
  72. # 只有insert时才生效
  73. 'insert' => true,
  74. 'search' => 'date',
  75. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  76. ),
  77. ),
  78. );