.attendance.js 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. module.exports = {
  2. create: {
  3. requestBody: [
  4. 'planyearid',
  5. 'planid',
  6. 'termid',
  7. 'batchid',
  8. 'classid',
  9. 'studentid',
  10. 'schid',
  11. 'schname',
  12. 'stuname',
  13. 'attend'
  14. ]
  15. },
  16. destroy: {
  17. params: ['!id'],
  18. service: 'delete'
  19. },
  20. update: {
  21. params: ['!id'],
  22. requestBody: [
  23. 'planyearid',
  24. 'planid',
  25. 'termid',
  26. 'batchid',
  27. 'classid',
  28. 'studentid',
  29. 'schid',
  30. 'schname',
  31. 'stuname',
  32. 'attend'
  33. ]
  34. },
  35. show: {
  36. parameters: {
  37. params: ['!id']
  38. },
  39. service: 'fetch'
  40. },
  41. index: {
  42. parameters: {
  43. query: {
  44. planyearid:'planyearid',
  45. termid :'termid',
  46. batchid:'batchid',
  47. classid :'classid',
  48. studentid :'studentid',
  49. schid: 'schid',
  50. attend :'attend'
  51. }
  52. },
  53. service: 'query',
  54. options: {
  55. query: ['skip', 'limit'],
  56. sort: ['meta.createdAt'],
  57. desc: true,
  58. count: true
  59. }
  60. },
  61. };