1234567891011121314151617181920212223 |
- module.exports = {
- dockProduct: {
- parameters: {
- query: {
- dock_id: "dock_id",
- type: "type",
- name: "productList.name",
- type: "productList.type",
- field: "productList.field",
- cooperation: "productList.cooperation",
- "create_time@start": "create_time@start",
- "create_time@end": "create_time@end",
- },
- options: {
- "productList.status": "1", // 默认条件
- },
- },
- service: "dockProduct",
- options: {
- query: ["skip", "limit"],
- },
- },
- };
|