creater_xuniren.php 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. $status = array(
  3. 1 => '已登场',
  4. 2 => '未登场',
  5. );
  6. return array
  7. (
  8. # 表名
  9. 'name' => 'creater_xuniren',
  10. # 显示给用户看的名称
  11. 'lang' => '造物主虚拟人关联表',
  12. 'order' => 1,
  13. 'menu' => false,
  14. # 数据结构
  15. 'struct' => array
  16. (
  17. 'id' => array
  18. (
  19. 'type' => 'int-11',
  20. 'name' => 'ID',
  21. 'default' => '',
  22. 'desc' => '',
  23. 'match' => 'is_numeric',
  24. 'list' => true,
  25. ),
  26. 'cid' => array
  27. (
  28. 'type' => 'int-11',
  29. 'name' => '造物主id',
  30. 'default' => '',
  31. 'desc' => '造物主id',
  32. 'match' => 'is_numeric',
  33. 'update' => 'text',
  34. 'list' => true,
  35. ),
  36. 'xid' => array
  37. (
  38. 'type' => 'int-11',
  39. 'name' => '虚拟人id',
  40. 'default' => '',
  41. 'desc' => '虚拟人id',
  42. 'match' => 'is_numeric',
  43. 'update' => 'text',
  44. 'list' => true,
  45. ),
  46. 'state' => array
  47. (
  48. 'type' => 'tinyint-1',
  49. 'name' => '状态',
  50. 'default' => '1',
  51. 'desc' => '请选择状态',
  52. 'match' => 'is_numeric',
  53. ),
  54. 'cdate' => array
  55. (
  56. 'type' => 'int-11',
  57. 'name' => '创建时间',
  58. 'match' => array('is_numeric', time()),
  59. 'desc' => '',
  60. # 只有insert时才生效
  61. 'insert' => true,
  62. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  63. 'search' => 'date',
  64. ),
  65. ),
  66. # 管理功能
  67. 'manage' => array
  68. (
  69. ),
  70. # request 请求接口定义
  71. 'request' => array
  72. (
  73. 'getAll' => array
  74. (
  75. # 匹配的正则或函数 选填项
  76. 'option' => array
  77. (
  78. 'cid' => 'yes',
  79. 'xid' => 'yes',
  80. 'state' => 1,
  81. ),
  82. 'type' => 'all',
  83. 'order' => array('id' => 'desc'),
  84. 'col' => '*',
  85. ),
  86. ),
  87. );