seller.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'seller',
  6. # 显示给用户看的名称
  7. 'lang' => '新增销售商',
  8. 'order' => 1,
  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. 'list' => true,
  21. ),
  22. 'name' => array
  23. (
  24. 'type' => 'varchar-80',
  25. 'name' => '销售商名称',
  26. 'default' => '',
  27. 'desc' => '销售商名称',
  28. 'match' => 'is_string',
  29. 'update' => 'text',
  30. 'list' => true,
  31. ),
  32. 'state' => array
  33. (
  34. 'type' => 'tinyint-1',
  35. 'name' => '状态',
  36. 'default' => '1',
  37. 'desc' => '请选择状态',
  38. 'match' => 'is_numeric',
  39. ),
  40. 'cdate' => array
  41. (
  42. 'type' => 'int-11',
  43. 'name' => '录入时间',
  44. 'match' => array('is_numeric', time()),
  45. 'desc' => '',
  46. # 只有insert时才生效
  47. 'insert' => true,
  48. ),
  49. ),
  50. 'manage' => array
  51. (
  52. ),
  53. # 默认值
  54. 'default' => array
  55. (
  56. 'col' => 'name,state,cdate',
  57. 'value' => array
  58. (
  59. '"官方",1,' . time(),
  60. ),
  61. ),
  62. );