refund.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. return array
  3. (
  4. # 表名
  5. 'name' => 'refund',
  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. 'search' => 'order',
  21. //'list' => true,
  22. ),
  23. 'order_id' => array
  24. (
  25. 'type' => 'int-11',
  26. 'name' => '订单id',
  27. 'default' => '',
  28. 'desc' => '订单id',
  29. 'match' => 'is_numeric',
  30. 'update' => 'text',
  31. 'search' => 'fulltext',
  32. 'list' => true,
  33. ),
  34. 'order_num' => array
  35. (
  36. 'type' => 'varchar-200',
  37. 'name' => '退款订单号',
  38. 'default' => '',
  39. 'desc' => '退款订单号',
  40. 'match' => 'is_numeric',
  41. 'update' => 'text',
  42. 'search' => 'fulltext',
  43. 'list' => true,
  44. ),
  45. 'cash' => array
  46. (
  47. 'type' => 'varchar-11',
  48. 'name' => '退款金额',
  49. 'default' => '',
  50. 'desc' => '金额',
  51. 'match' => 'is_string',
  52. 'update' => 'text',
  53. 'list' => true,
  54. ),
  55. 'state' => array
  56. (
  57. 'type' => 'tinyint-1',
  58. 'name' => '状态',
  59. 'default' => '1',
  60. 'desc' => '请选择状态',
  61. 'match' => 'is_numeric',
  62. ),
  63. 'cdate' => array
  64. (
  65. 'type' => 'int-11',
  66. 'name' => '申请时间',
  67. 'match' => array('is_numeric', time()),
  68. 'desc' => '',
  69. # 只有insert时才生效
  70. 'insert' => true,
  71. 'search' => 'date',
  72. 'list' => 'date("Y-m-d H:i:s", {cdate})',
  73. ),
  74. ),
  75. 'manage' => array
  76. (
  77. 'insert' => false,
  78. 'edit' => false,
  79. 'delete' => false,
  80. 'excel' => true,
  81. ),
  82. );