file_tag.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | file_tag
  5. |--------------------------------------------------------------------------
  6. */
  7. return array
  8. (
  9. # 表名
  10. 'name' => 'file_tag',
  11. # 显示给用户看的名称
  12. 'lang' => '资源标签关联表',
  13. 'menu' => false,
  14. # 数据结构
  15. 'struct' => array
  16. (
  17. 'id' => array
  18. (
  19. 'type' => 'int-11',
  20. 'name' => 'ID',
  21. 'default' => '',
  22. 'desc' => '',
  23. 'match' => 'is_numeric',
  24. 'search' => 'order',
  25. 'list' => true,
  26. ),
  27. 'file_id' => array
  28. (
  29. 'type' => 'int-11',
  30. 'name' => '文件id',
  31. 'default' => '',
  32. 'desc' => '文件id',
  33. 'match' => 'is_numeric',
  34. 'update' => 'text',
  35. 'list' => true,
  36. ),
  37. 'tag_id' => array
  38. (
  39. 'type' => 'int-11',
  40. 'name' => '标签id',
  41. 'default' => '',
  42. 'desc' => '标签id',
  43. 'match' => 'is_numeric',
  44. 'update' => 'text',
  45. 'list' => true,
  46. ),
  47. 'cdate' => array
  48. (
  49. 'type' => 'int-11',
  50. 'name' => '录入时间',
  51. 'match' => array('is_numeric', DEVER_TIME),
  52. 'desc' => '',
  53. # 只有insert时才生效
  54. 'insert' => true,
  55. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  56. ),
  57. ),
  58. # request 请求接口定义
  59. 'request' => array
  60. (
  61. )
  62. );