job.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'job',
  6. # 显示给用户看的名称
  7. 'lang' => '招聘信息',
  8. 'order' => 88,
  9. # 数据结构
  10. 'struct' => array
  11. (
  12. 'id' => array
  13. (
  14. 'type' => 'int-11',
  15. 'name' => 'ID',
  16. 'default' => '',
  17. 'desc' => '',
  18. 'match' => 'is_numeric',
  19. 'list' => true,
  20. ),
  21. 'name' => array
  22. (
  23. 'type' => 'varchar-80',
  24. 'name' => '标题',
  25. 'default' => '',
  26. 'desc' => '标题',
  27. 'match' => 'is_string',
  28. 'update' => 'text',
  29. 'list' => true,
  30. 'search' => 'fulltext',
  31. //增加预览
  32. 'preview' => true,
  33. ),
  34. 'text' => array
  35. (
  36. 'type' => 'text-1000',
  37. 'name' => '职位描述',
  38. 'default' => '',
  39. 'desc' => '职位描述',
  40. 'match' => 'is_string',
  41. 'update' => array
  42. (
  43. array
  44. (
  45. 'col' => 'name',
  46. 'name' => '单条描述',
  47. 'default' => '',
  48. 'desc' => '单条描述',
  49. 'match' => 'is_string',
  50. 'update' => 'textarea',
  51. ),
  52. ),
  53. ),
  54. 'reorder' => array
  55. (
  56. 'type' => 'int-11',
  57. 'name' => '排序(数值越大越靠前)',
  58. 'default' => '1',
  59. 'desc' => '请输入排序',
  60. 'match' => 'option',
  61. 'update' => 'text',
  62. 'search' => 'order',
  63. 'list' => true,
  64. 'order' => 'desc',
  65. 'edit' => true,
  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. ),
  84. ),
  85. # 管理功能
  86. 'manage' => array
  87. (
  88. //'insert' => false,
  89. ),
  90. # request 请求接口定义
  91. 'request' => array
  92. (
  93. ),
  94. );