12345678910111213141516171819202122232425262728293031323334353637 |
- module.exports = {
- create: {
- requestBody: ["dock_id", "title", "brief", "video_url", "remark"],
- },
- destroy: {
- params: ["!id"],
- service: "delete",
- },
- update: {
- params: ["!id"],
- requestBody: ["dock_id", "title", "brief", "video_url", "remark"],
- },
- show: {
- parameters: {
- params: ["!id"],
- },
- service: "fetch",
- },
- index: {
- parameters: {
- query: {
- dock_id: "dock_id",
- title: "title",
- },
- // options: {
- // "meta.state": 0 // 默认条件
- // },
- },
- service: "query",
- options: {
- query: ["skip", "limit"],
- sort: ["meta.createdAt"],
- desc: true,
- count: true,
- },
- },
- };
|