12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- module.exports = {
- create: {
- requestBody: [
- 'planyearid',
- 'planid',
- 'termid',
- 'batchid',
- 'classid',
- 'studentid',
- 'schid',
- 'schname',
- 'stuname',
- 'attend'
- ]
- },
- destroy: {
- params: ['!id'],
- service: 'delete'
- },
- update: {
- params: ['!id'],
- requestBody: [
- 'planyearid',
- 'planid',
- 'termid',
- 'batchid',
- 'classid',
- 'studentid',
- 'schid',
- 'schname',
- 'stuname',
- 'attend'
- ]
- },
- show: {
- parameters: {
- params: ['!id']
- },
- service: 'fetch'
- },
- index: {
- parameters: {
- query: {
- planyearid:'planyearid',
- termid :'termid',
- batchid:'batchid',
- classid :'classid',
- studentid :'studentid',
- schid: 'schid',
- attend :'attend'
- }
- },
- service: 'query',
- options: {
- query: ['skip', 'limit'],
- sort: ['meta.createdAt'],
- desc: true,
- count: true
- }
- },
- };
|