sku.php 800 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. return [
  3. 'name' => '接口规格设置',
  4. 'struct' => [
  5. 'app_func_id' => [
  6. 'name' => '功能id',
  7. 'type' => 'int(11)',
  8. ],
  9. 'key' => [
  10. 'name' => '规格ID',
  11. 'type' => 'varchar(500)',
  12. ],
  13. 'price' => [
  14. 'name' => '售价',
  15. 'type' => 'decimal(11,2)',
  16. ],
  17. 'num' => [
  18. 'name' => '总次数',
  19. 'type' => 'int(11)',
  20. ],
  21. 'day_num' => [
  22. 'name' => '每天限制次数',
  23. 'type' => 'int(11)',
  24. ],
  25. 'state' => [
  26. 'name' => '数据状态',
  27. 'type' => 'tinyint(1)',
  28. 'default' => '1',
  29. ],
  30. ],
  31. ];