info_extend.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'info_extend',
  6. # 显示给用户看的名称
  7. 'lang' => '商品扩展信息表',
  8. 'menu' => false,
  9. # 数据结构
  10. 'struct' => array
  11. (
  12. 'id' => array
  13. (
  14. 'type' => 'int-11',
  15. 'name' => 'ID',
  16. 'default' => '',
  17. 'desc' => '',
  18. 'match' => 'is_numeric',
  19. 'search' => 'order',
  20. //'list' => true,
  21. ),
  22. 'info_id' => array
  23. (
  24. 'type' => 'int-11',
  25. 'name' => '商品ID',
  26. 'default' => '',
  27. 'desc' => '商品ID',
  28. 'match' => 'is_numeric',
  29. 'update' => 'text',
  30. 'list' => true,
  31. ),
  32. 'extend' => array
  33. (
  34. 'type' => 'text-255',
  35. 'name' => '扩展信息',
  36. 'default' => '',
  37. 'desc' => '扩展信息',
  38. 'match' => 'is_numeric',
  39. ),
  40. 'cdate' => array
  41. (
  42. 'type' => 'int-11',
  43. 'name' => '录入时间',
  44. 'match' => array('is_numeric', DEVER_TIME),
  45. 'desc' => '',
  46. # 只有insert时才生效
  47. 'insert' => true,
  48. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  49. ),
  50. ),
  51. 'manage' => array
  52. (
  53. 'delete' => false,
  54. 'edit' => false,
  55. 'insert' => false,
  56. ),
  57. );