.index.js 550 B

1234567891011121314151617181920212223
  1. module.exports = {
  2. dockProduct: {
  3. parameters: {
  4. query: {
  5. dock_id: "dock_id",
  6. type: "type",
  7. name: "productList.name",
  8. type: "productList.type",
  9. field: "productList.field",
  10. cooperation: "productList.cooperation",
  11. "create_time@start": "create_time@start",
  12. "create_time@end": "create_time@end",
  13. },
  14. options: {
  15. "productList.status": "1", // 默认条件
  16. },
  17. },
  18. service: "dockProduct",
  19. options: {
  20. query: ["skip", "limit"],
  21. },
  22. },
  23. };