account.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. $type = array
  3. (
  4. 'wechat' => '微信',
  5. );
  6. return array
  7. (
  8. # 表名
  9. 'name' => 'account',
  10. # 显示给用户看的名称
  11. 'lang' => '第三方管理',
  12. 'order' => 10,
  13. # 数据结构
  14. 'struct' => array
  15. (
  16. 'id' => array
  17. (
  18. 'type' => 'int-11',
  19. 'name' => 'ID',
  20. 'default' => '',
  21. 'desc' => '',
  22. 'match' => 'is_numeric',
  23. 'search' => 'order',
  24. 'list' => true,
  25. ),
  26. 'name' => array
  27. (
  28. 'type' => 'varchar-60',
  29. 'name' => '账户名称',
  30. 'default' => '',
  31. 'desc' => '账户名称',
  32. 'match' => 'is_string',
  33. 'update' => 'text',
  34. 'search' => 'fulltext',
  35. 'list' => true,
  36. ),
  37. 'type' => array
  38. (
  39. 'type' => 'varchar-30',
  40. 'name' => '账户类型',
  41. 'default' => 'wechat',
  42. 'desc' => '账户类型',
  43. 'match' => 'is_string',
  44. 'update' => 'radio',
  45. 'option' => $type,
  46. 'search' => 'select',
  47. 'list' => true,
  48. ),
  49. 'appid' => array
  50. (
  51. 'type' => 'varchar-150',
  52. 'name' => 'appid',
  53. 'default' => '',
  54. 'desc' => 'appid',
  55. 'match' => 'is_string',
  56. 'update' => 'text',
  57. ),
  58. 'appsecret' => array
  59. (
  60. 'type' => 'varchar-300',
  61. 'name' => 'appsecret',
  62. 'default' => '',
  63. 'desc' => 'appsecret',
  64. 'match' => 'is_string',
  65. 'update' => 'text',
  66. ),
  67. 'state' => array
  68. (
  69. 'type' => 'tinyint-1',
  70. 'name' => '状态',
  71. 'default' => '1',
  72. 'desc' => '请选择状态',
  73. 'match' => 'is_numeric',
  74. ),
  75. 'cdate' => array
  76. (
  77. 'type' => 'int-11',
  78. 'name' => '申请时间',
  79. 'match' => array('is_numeric', time()),
  80. 'desc' => '',
  81. # 只有insert时才生效
  82. 'insert' => true,
  83. 'search' => 'date',
  84. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  85. ),
  86. ),
  87. );