.storeShop.js 960 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. module.exports = {
  2. create: {
  3. requestBody: ['customer', 'shop', 'time'],
  4. },
  5. destroy: {
  6. params: ['!id'],
  7. service: 'delete',
  8. },
  9. update: {
  10. params: ['!id'],
  11. requestBody: ['customer', 'shop', 'time'],
  12. },
  13. show: {
  14. parameters: {
  15. params: ['!id'],
  16. },
  17. service: 'fetch',
  18. },
  19. index: {
  20. parameters: {
  21. query: {
  22. 'meta.createdAt@start': 'meta.createdAt@start',
  23. 'meta.createdAt@end': 'meta.createdAt@end',
  24. customer: 'customer',
  25. shop: 'shop',
  26. time: 'time',
  27. 'time@start': 'time@start',
  28. 'time@end': 'time@end',
  29. },
  30. // options: {
  31. // "meta.state": 0 // 默认条件
  32. // },
  33. },
  34. service: 'query',
  35. options: {
  36. query: ['skip', 'limit'],
  37. sort: ['time'],
  38. desc: true,
  39. count: true,
  40. },
  41. },
  42. check: {
  43. parameters: {
  44. query: {
  45. customer: 'customer',
  46. shop: 'shop',
  47. },
  48. },
  49. },
  50. };