1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- module.exports = {
- create: {
- requestBody: [
- "team_id",
- "team_name",
- "apply_user",
- "apply_id",
- "apply_time",
- "status",
- "remark",
- ],
- },
- destroy: {
- params: ["!id"],
- service: "delete",
- },
- update: {
- params: ["!id"],
- requestBody: [
- "team_id",
- "team_name",
- "apply_user",
- "apply_id",
- "apply_time",
- "status",
- "remark",
- ],
- },
- show: {
- parameters: {
- params: ["!id"],
- },
- service: "fetch",
- },
- index: {
- parameters: {
- query: {
- team_id: "team_id",
- team_name: "team_name",
- apply_time: "apply_time",
- apply_user: "apply_user",
- apply_id: "apply_id",
- status: "status",
- "meta.createdAt@start": "meta.createdAt@start",
- "meta.createdAt@end": "meta.createdAt@end",
- },
- // options: {
- // "meta.state": 0 // 默认条件
- // },
- },
- service: "query",
- options: {
- query: ["skip", "limit"],
- sort: ["meta.createdAt"],
- desc: true,
- count: true,
- },
- },
- };
|