bank.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'bank',
  6. # 显示给用户看的名称
  7. 'lang' => '银行列表',
  8. # 后台菜单排序
  9. 'order' => 4,
  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. 'order' => 'desc',
  23. ),
  24. 'name' => array
  25. (
  26. 'type' => 'varchar-200',
  27. 'name' => '银行名称',
  28. 'default' => '',
  29. 'desc' => '银行名称',
  30. 'match' => 'is_string',
  31. 'update' => 'text',
  32. 'search' => 'fulltext',
  33. 'list' => true,
  34. ),
  35. 'logo' => array
  36. (
  37. 'type' => 'varchar-150',
  38. 'name' => '银行logo',
  39. 'default' => '',
  40. 'desc' => '银行logo',
  41. 'match' => 'option',
  42. 'update' => 'image',
  43. 'key' => '1',
  44. 'place' => '300*300',
  45. ),
  46. 'reorder' => array
  47. (
  48. 'type' => 'int-11',
  49. 'name' => '排序-数值越大越靠前',
  50. 'default' => '1',
  51. 'desc' => '请输入排序',
  52. 'match' => 'option',
  53. 'update' => 'text',
  54. 'search' => 'order',
  55. 'list' => true,
  56. 'order' => 'desc',
  57. 'edit' => true,
  58. ),
  59. 'state' => array
  60. (
  61. 'type' => 'tinyint-1',
  62. 'name' => '状态',
  63. 'default' => '1',
  64. 'desc' => '请选择状态',
  65. 'match' => 'is_numeric',
  66. ),
  67. 'cdate' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '创建时间',
  71. 'match' => array('is_numeric', time()),
  72. 'desc' => '',
  73. # 只有insert时才生效
  74. 'insert' => true,
  75. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  76. ),
  77. ),
  78. 'manage' => array
  79. (
  80. //'insert' => false,
  81. //'delete' => false,
  82. 'edit' => false,
  83. 'list_button' => array
  84. (
  85. 'fast' => array('编辑', '"bank&where_id={id}&oper_save_jump=bank&oper_table=bank&oper_parent=bank"'),
  86. )
  87. ),
  88. 'request' => array
  89. (
  90. ),
  91. );