1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- module.exports = {
- create: {
- requestBody: ['customer', 'address', 'goods', 'total_detail', 'buy_time', 'pay_time', 'pay_id', 'no', 'status'],
- },
- destroy: {
- params: ['!id'],
- service: 'delete',
- },
- update: {
- params: ['!id'],
- requestBody: ['customer', 'address', 'goods', 'total_detail', 'buy_time', 'pay_time', 'pay_id', 'no', 'status'],
- },
- show: {
- parameters: {
- params: ['!id'],
- },
- service: 'fetch',
- },
- index: {
- parameters: {
- query: {
- 'meta.createdAt@start': 'meta.createdAt@start',
- 'meta.createdAt@end': 'meta.createdAt@end',
- customer: 'customer',
- buy_time: 'buy_time',
- pay_id: 'pay_id',
- no: 'no',
- },
- // options: {
- // "meta.state": 0 // 默认条件
- // },
- },
- service: 'query',
- options: {
- query: ['skip', 'limit'],
- sort: ['meta.createdAt'],
- desc: true,
- count: true,
- },
- },
- toMakeOrder: {
- requestBody: ['!key'],
- },
- fromGoodsToOrder: {
- requestBody: ['!shop', '!goods', '!goodsSpec', '!num'],
- },
- };
|