|
@@ -1,41 +1,41 @@
|
|
|
|
|
|
module.exports = {
|
|
|
create: {
|
|
|
- requestBody: ['!money','!customer','!apply_time','!apply_reason','deal_person','exam_time','exam_reason','status'],
|
|
|
+ requestBody: ['card', '!money', '!customer', '!apply_time', '!apply_reason', 'deal_person', 'exam_time', 'exam_reason', 'status'],
|
|
|
},
|
|
|
destroy: {
|
|
|
- params: ["!id"],
|
|
|
- service: "delete",
|
|
|
+ params: ['!id'],
|
|
|
+ service: 'delete',
|
|
|
},
|
|
|
update: {
|
|
|
- params: ["!id"],
|
|
|
- requestBody: ['money','customer','apply_time','apply_reason','deal_person','exam_time','exam_reason','status'],
|
|
|
+ params: ['!id'],
|
|
|
+ requestBody: ['card', 'money', 'customer', 'apply_time', 'apply_reason', 'deal_person', 'exam_time', 'exam_reason', 'status'],
|
|
|
},
|
|
|
show: {
|
|
|
parameters: {
|
|
|
- params: ["!id"],
|
|
|
+ params: ['!id'],
|
|
|
},
|
|
|
- service: "fetch",
|
|
|
+ service: 'fetch',
|
|
|
},
|
|
|
index: {
|
|
|
parameters: {
|
|
|
query: {
|
|
|
- "meta.createdAt@start": "meta.createdAt@start",
|
|
|
- "meta.createdAt@end": "meta.createdAt@end",
|
|
|
- 'customer': 'customer' ,
|
|
|
- 'apply_time': 'apply_time' ,
|
|
|
- 'deal_person': 'deal_person' ,
|
|
|
- 'exam_time': 'exam_time' ,
|
|
|
- 'status': 'status' ,
|
|
|
+ 'meta.createdAt@start': 'meta.createdAt@start',
|
|
|
+ 'meta.createdAt@end': 'meta.createdAt@end',
|
|
|
+ customer: 'customer',
|
|
|
+ apply_time: 'apply_time',
|
|
|
+ deal_person: 'deal_person',
|
|
|
+ exam_time: 'exam_time',
|
|
|
+ status: 'status',
|
|
|
},
|
|
|
// options: {
|
|
|
// "meta.state": 0 // 默认条件
|
|
|
// },
|
|
|
},
|
|
|
- service: "query",
|
|
|
+ service: 'query',
|
|
|
options: {
|
|
|
- query: ["skip", "limit"],
|
|
|
- sort: ["meta.createdAt"],
|
|
|
+ query: ['skip', 'limit'],
|
|
|
+ sort: ['meta.createdAt'],
|
|
|
desc: true,
|
|
|
count: true,
|
|
|
},
|