project.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. $type = Dever::config('base', 'pay')->pay['type'];
  3. return array
  4. (
  5. # 表名
  6. 'name' => 'project',
  7. # 显示给用户看的名称
  8. 'lang' => '项目管理',
  9. 'order' => 8,
  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. 'name' => array
  24. (
  25. 'type' => 'varchar-60',
  26. 'name' => '项目名称',
  27. 'default' => '',
  28. 'desc' => '项目名称',
  29. 'match' => 'is_string',
  30. 'update' => 'text',
  31. 'search' => 'fulltext',
  32. 'list' => true,
  33. ),
  34. 'key' => array
  35. (
  36. 'type' => 'varchar-150',
  37. 'name' => '密匙key',
  38. 'default' => '',
  39. 'desc' => '密匙key',
  40. 'match' => 'is_string',
  41. 'update' => 'text',
  42. 'list' => true,
  43. ),
  44. 'notify' => array
  45. (
  46. 'type' => 'varchar-500',
  47. 'name' => '支付完成回调接口',
  48. 'default' => '',
  49. 'desc' => '支付完成回调接口',
  50. 'match' => 'option',
  51. 'update' => 'textarea',
  52. ),
  53. 'state' => array
  54. (
  55. 'type' => 'tinyint-1',
  56. 'name' => '状态',
  57. 'default' => '1',
  58. 'desc' => '请选择状态',
  59. 'match' => 'is_numeric',
  60. ),
  61. 'cdate' => array
  62. (
  63. 'type' => 'int-11',
  64. 'name' => '申请时间',
  65. 'match' => array('is_numeric', time()),
  66. 'desc' => '',
  67. # 只有insert时才生效
  68. 'insert' => true,
  69. 'search' => 'date',
  70. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  71. ),
  72. ),
  73. # 默认值
  74. 'default' => array
  75. (
  76. 'col' => 'name,`key`,state,cdate',
  77. 'value' => array
  78. (
  79. '"默认项目","dever_pay_2018",1,' . time(),
  80. ),
  81. ),
  82. );