.job.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. module.exports = {
  2. create: {
  3. requestBody: [
  4. 'code',
  5. 'name',
  6. 'planid',
  7. 'termid',
  8. 'term',
  9. 'batchid',
  10. 'filepath',
  11. 'studs',
  12. 'plannum',
  13. 'schnum',
  14. 'isstore',
  15. 'createtime',
  16. 'type',
  17. 'reason',
  18. ]
  19. },
  20. destroy: {
  21. params: ['!id'],
  22. service: 'delete'
  23. },
  24. update: {
  25. params: ['!id'],
  26. requestBody: [
  27. 'code',
  28. 'name',
  29. 'planid',
  30. 'termid',
  31. 'term',
  32. 'batchid',
  33. 'filepath',
  34. 'studs',
  35. 'plannum',
  36. 'schnum',
  37. 'isstore',
  38. 'createtime',
  39. 'type',
  40. 'reason',
  41. ]
  42. },
  43. show: {
  44. parameters: {
  45. params: ['!id']
  46. },
  47. service: 'fetch'
  48. },
  49. index: {
  50. parameters: {
  51. query: {
  52. code: 'code',
  53. name: 'name',
  54. planid: 'planid',
  55. termid: 'termid',
  56. term: 'term',
  57. batchid: 'batchid',
  58. filepath: 'filepath',
  59. studs: 'studs',
  60. plannum: 'plannum',
  61. schnum: 'schnum',
  62. isstore: 'isstore',
  63. createtime: 'createtime',
  64. type: 'type',
  65. reason: 'reason',
  66. }
  67. },
  68. service: 'query',
  69. options: {
  70. query: ['skip', 'limit'],
  71. sort: ['meta.createdAt'],
  72. desc: true,
  73. count: true
  74. }
  75. },
  76. };