factory.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'factory',
  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. 'update' => 'hidden',
  21. //'list' => true,
  22. ),
  23. 'shop_id' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '所属门店',
  27. 'default' => '',
  28. 'desc' => '所属门店',
  29. 'match' => 'is_numeric',
  30. 'update' => 'text',
  31. ),
  32. 'factory_id' => array
  33. (
  34. 'type' => 'int-11',
  35. 'name' => '所属工厂',
  36. 'default' => '',
  37. 'desc' => '所属工厂',
  38. 'match' => 'is_numeric',
  39. 'update' => 'text',
  40. ),
  41. 'city' => array
  42. (
  43. 'type' => 'int-11',
  44. 'name' => '城市',
  45. 'default' => '',
  46. 'desc' => '城市',
  47. 'match' => 'option',
  48. //'update' => 'text',
  49. ),
  50. 'state' => array
  51. (
  52. 'type' => 'tinyint-1',
  53. 'name' => '状态',
  54. 'default' => '1',
  55. 'desc' => '请选择状态',
  56. 'match' => 'is_numeric',
  57. ),
  58. 'cdate' => array
  59. (
  60. 'type' => 'int-11',
  61. 'name' => '创建时间',
  62. 'match' => array('is_numeric', time()),
  63. 'desc' => '',
  64. # 只有insert时才生效
  65. //'insert' => true,
  66. 'search' => 'date',
  67. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  68. ),
  69. ),
  70. 'manage' => array
  71. (
  72. ),
  73. 'request' => array
  74. (
  75. 'getAll' => array
  76. (
  77. 'option' => array
  78. (
  79. 'shop_id' => 'yes',
  80. 'state' => 1,
  81. ),
  82. 'type' => 'all',
  83. 'col' => '*|factory_id',
  84. ),
  85. ),
  86. );