info_log.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'info_log',
  6. # 显示给用户看的名称
  7. 'lang' => '线索记录',
  8. # 后台菜单排序
  9. 'order' => 2,
  10. 'menu' => false,
  11. # 数据结构
  12. 'struct' => array
  13. (
  14. 'id' => array
  15. (
  16. 'type' => 'int-11',
  17. 'name' => 'ID',
  18. 'default' => '',
  19. 'desc' => '',
  20. 'match' => 'is_numeric',
  21. 'search' => 'order',
  22. 'list' => true,
  23. 'order' => 'desc',
  24. ),
  25. 'info_id' => array
  26. (
  27. 'type' => 'int-11',
  28. 'name' => '线索信息',
  29. 'default' => '-1',
  30. 'desc' => '线索id',
  31. 'match' => 'is_string',
  32. // 'update' => 'text',
  33. ),
  34. 'crate_group_admin' => array
  35. (
  36. 'type' => 'varchar-30',
  37. 'name' => '操作人和部门',
  38. 'default' => '-1',
  39. 'desc' => '操作人',
  40. 'match' => 'is_string',
  41. // 'update' => 'text',
  42. ),
  43. 'crate_group_id' => array
  44. (
  45. 'type' => 'int-11',
  46. 'name' => '操作人部门',
  47. 'default' => '-1',
  48. 'desc' => '操作人',
  49. 'match' => 'is_string',
  50. // 'update' => 'text',
  51. ),
  52. 'crate_admin_id' => array
  53. (
  54. 'type' => 'int-11',
  55. 'name' => '操作人',
  56. 'default' => '-1',
  57. 'desc' => '操作人',
  58. 'match' => 'is_string',
  59. // 'update' => 'text',
  60. ),
  61. 'follow_id' => array
  62. (
  63. 'type' => 'int-11',
  64. 'name' => '跟进人表id',
  65. 'default' => '-1',
  66. 'desc' => '代理商',
  67. 'match' => 'is_string',
  68. // 'update' => 'text',
  69. ),
  70. 'follow_group_admin' => array
  71. (
  72. 'type' => 'varchar-30',
  73. 'name' => '跟进人和部门',
  74. 'default' => '-1',
  75. 'desc' => '操作人',
  76. 'match' => 'is_string',
  77. // 'update' => 'text',
  78. ),
  79. 'follow_group_id' => array
  80. (
  81. 'type' => 'int-11',
  82. 'name' => '跟进人部门',
  83. 'default' => '-1',
  84. 'desc' => '操作人',
  85. 'match' => 'is_string',
  86. // 'update' => 'text',
  87. ),
  88. 'follow_admin_id' => array
  89. (
  90. 'type' => 'int-11',
  91. 'name' => '跟进人',
  92. 'default' => '-1',
  93. 'desc' => '操作人',
  94. 'match' => 'is_string',
  95. // 'update' => 'text',
  96. ),
  97. 'state' => array
  98. (
  99. 'type' => 'tinyint-1',
  100. 'name' => '状态',
  101. 'default' => '1',
  102. 'desc' => '请选择状态',
  103. 'match' => 'is_numeric',
  104. ),
  105. 'cdate' => array
  106. (
  107. 'type' => 'int-11',
  108. 'name' => '处理时间',
  109. 'match' => array('is_numeric', time()),
  110. 'desc' => '',
  111. # 只有insert时才生效
  112. 'insert' => true,
  113. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  114. ),
  115. ),
  116. 'manage' => array
  117. (
  118. 'insert' => false,
  119. 'delete' => false,
  120. 'edit' => false,
  121. 'page_list' => 'info_log',
  122. ),
  123. 'request' => array
  124. (
  125. 'getAll' => array
  126. (
  127. # 匹配的正则或函数 选填项
  128. 'option' => array
  129. (
  130. 'info_id' => 'yes',
  131. 'state' => 1,
  132. ),
  133. 'type' => 'all',
  134. 'order' => array('cdate'=> 'desc'),
  135. 'col' => '*',
  136. ),
  137. 'getCountAll' => array
  138. (
  139. # 匹配的正则或函数 选填项
  140. 'option' => array
  141. (
  142. 'start' => array('yes-cdate','>='),
  143. 'end'=>array('yes-cdate','<='),
  144. 'follow_group_id' =>'yes',
  145. // 'type' =>array('yes','in'),
  146. 'state' => 1,
  147. ),
  148. 'type' => 'all',
  149. // 'order' => array('reorder' => 'desc', 'id' => 'desc'),
  150. // 'page' => array(5,'list'),
  151. 'col' => '*|follow_admin_id',
  152. ),
  153. ),
  154. );