area_stat_log.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'area_stat_log',
  6. # 显示给用户看的名称
  7. 'lang' => '区域分润操作记录表',
  8. 'order' => 79,
  9. 'menu' => false,
  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. ),
  23. 'month' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '月份',
  27. 'default' => '',
  28. 'match' => 'is_numeric',
  29. 'desc' => '',
  30. 'update' => 'month',
  31. 'search' => 'month',
  32. 'callback' => 'maketime',
  33. 'list' => 'date("Y-m", {month})',
  34. ),
  35. 'create_admin' => array
  36. (
  37. 'type' => 'int-11',
  38. 'name' => '区域分润生成人',
  39. 'default' => '',
  40. 'desc' => '区域分润生成人',
  41. 'match' => 'is_numeric',
  42. ),
  43. 'create_date' => array
  44. (
  45. 'type' => 'int-11',
  46. 'name' => '区域分润生成时间',
  47. 'default' => '',
  48. 'desc' => '区域分润生成时间',
  49. 'match' => 'is_numeric',
  50. ),
  51. 'confirm_admin' => array
  52. (
  53. 'type' => 'int-11',
  54. 'name' => '对账确认人',
  55. 'default' => '',
  56. 'desc' => '对账确认人',
  57. 'match' => 'is_numeric',
  58. ),
  59. 'confirm_date' => array
  60. (
  61. 'type' => 'int-11',
  62. 'name' => '对账确认时间',
  63. 'default' => '',
  64. 'desc' => '对账确认时间',
  65. 'match' => 'is_numeric',
  66. ),
  67. 'send_admin' => array
  68. (
  69. 'type' => 'int-11',
  70. 'name' => '账单发放人',
  71. 'default' => '',
  72. 'desc' => '账单发放人',
  73. 'match' => 'is_numeric',
  74. ),
  75. 'send_date' => array
  76. (
  77. 'type' => 'int-11',
  78. 'name' => '账单发放时间',
  79. 'default' => '',
  80. 'desc' => '账单发放时间',
  81. 'match' => 'is_numeric',
  82. ),
  83. 'city_num' => array
  84. (
  85. 'type' => 'int-11',
  86. 'name' => '城市数量',
  87. 'default' => '0',
  88. 'desc' => '城市数量',
  89. 'match' => 'is_numeric',
  90. ),
  91. 'county_num' => array
  92. (
  93. 'type' => 'int-11',
  94. 'name' => '区县数量',
  95. 'default' => '0',
  96. 'desc' => '区县数量',
  97. 'match' => 'is_numeric',
  98. ),
  99. 'town_num' => array
  100. (
  101. 'type' => 'int-11',
  102. 'name' => '街道数量',
  103. 'default' => '0',
  104. 'desc' => '街道数量',
  105. 'match' => 'is_numeric',
  106. ),
  107. 'state' => array
  108. (
  109. 'type' => 'tinyint-1',
  110. 'name' => '状态',
  111. 'default' => '1',
  112. 'desc' => '请选择状态',
  113. 'match' => 'is_numeric',
  114. ),
  115. 'cdate' => array
  116. (
  117. 'type' => 'int-11',
  118. 'name' => '统计时间',
  119. 'match' => array('is_numeric', time()),
  120. 'desc' => '',
  121. ),
  122. ),
  123. 'manage' => array
  124. (
  125. // 'insert' => false,
  126. 'delete' => false,
  127. // 'edit' => false,
  128. // 'excel' => true,
  129. ),
  130. 'request' => array
  131. (
  132. ),
  133. );