12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- module.exports = {
- create: {
- requestBody: [
- 'code',
- 'name',
- 'planid',
- 'termid',
- 'term',
- 'batchid',
- 'filepath',
- 'studs',
- 'plannum',
- 'schnum',
- 'isstore',
- 'createtime',
- 'type',
- 'reason',
- ]
- },
- destroy: {
- params: ['!id'],
- service: 'delete'
- },
- update: {
- params: ['!id'],
- requestBody: [
- 'code',
- 'name',
- 'planid',
- 'termid',
- 'term',
- 'batchid',
- 'filepath',
- 'studs',
- 'plannum',
- 'schnum',
- 'isstore',
- 'createtime',
- 'type',
- 'reason',
- ]
- },
- show: {
- parameters: {
- params: ['!id']
- },
- service: 'fetch'
- },
- index: {
- parameters: {
- query: {
- code: 'code',
- name: 'name',
- planid: 'planid',
- termid: 'termid',
- term: 'term',
- batchid: 'batchid',
- filepath: 'filepath',
- studs: 'studs',
- plannum: 'plannum',
- schnum: 'schnum',
- isstore: 'isstore',
- createtime: 'createtime',
- type: 'type',
- reason: 'reason',
- }
- },
- service: 'query',
- options: {
- query: ['skip', 'limit'],
- sort: ['meta.createdAt'],
- desc: true,
- count: true
- }
- },
- };
|