yspay_project.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'yspay_project',
  6. # 显示给用户看的名称
  7. 'lang' => '银商关联项目',
  8. 'order' => 10,
  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. 'account_id' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '账户id',
  27. 'default' => '',
  28. 'desc' => '账户id',
  29. 'match' => 'option',
  30. ),
  31. 'name' => array
  32. (
  33. 'type' => 'varchar-50',
  34. 'name' => '项目名',
  35. 'default' => '',
  36. 'desc' => '项目名',
  37. 'match' => 'is_string',
  38. 'update' => 'text',
  39. ),
  40. 'table' => array
  41. (
  42. 'type' => 'varchar-150',
  43. 'name' => '表名',
  44. 'default' => '',
  45. 'desc' => '表名',
  46. 'match' => 'is_string',
  47. 'update' => 'text',
  48. ),
  49. 'state' => array
  50. (
  51. 'type' => 'tinyint-1',
  52. 'name' => '状态',
  53. 'default' => '1',
  54. 'desc' => '请选择状态',
  55. 'match' => 'is_numeric',
  56. ),
  57. 'cdate' => array
  58. (
  59. 'type' => 'int-11',
  60. 'name' => '申请时间',
  61. 'match' => array('is_numeric', time()),
  62. 'desc' => '',
  63. # 只有insert时才生效
  64. 'insert' => true,
  65. 'search' => 'date',
  66. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  67. ),
  68. ),
  69. 'manage' => array
  70. (
  71. ),
  72. );