{ "openapi": "3.0.1", "tags": [ { "name": "合同物料MRP信息" } ], "paths": { "/contractMrpInfo/page": { "post": { "summary": "分页", "tags": [ "合同物料MRP信息" ], "requestBody": { "content": { "application/json": { "schema": { "type": "object", "required": [ "pageNum", "pageSize" ], "title": null, "properties": { "pageNum": { "type": "integer", "required": null, "title": "页数", "properties": null, "items": null }, "pageSize": { "type": "integer", "required": null, "title": "每页大小", "properties": null, "items": null } }, "items": null } } } }, "responses": { "200": { "description": "成功", "content": { "application/json": { "schema": { "type": "object", "required": [ "code", "success", "msg", "data" ], "title": null, "properties": { "code": { "type": "Integer", "required": null, "title": null, "properties": null, "items": null }, "success": { "type": "boolean", "required": null, "title": null, "properties": null, "items": null }, "msg": { "type": "string", "required": null, "title": null, "properties": null, "items": null }, "data": { "type": "object", "required": [ "rows", "total" ], "title": null, "properties": { "records": { "type": "array", "required": null, "title": "分页数据", "properties": null, "items": { "type": "object", "required": null, "title": null, "properties": { "id": { "type": "integer", "required": null, "title": "", "properties": null, "items": null }, "contractId": { "type": "integer", "required": null, "title": "合同id", "properties": null, "items": null }, "materialId": { "type": "integer", "required": null, "title": "物料id", "properties": null, "items": null }, "stockQuantity": { "type": "number", "required": null, "title": "库存数量", "properties": null, "items": null }, "createTime": { "type": "string", "required": null, "title": "创建时间", "properties": null, "items": null }, "updateTime": { "type": "string", "required": null, "title": "修改时间", "properties": null, "items": null } }, "items": null } }, "total": { "type": "integer", "required": null, "title": "总条数", "properties": null, "items": null } }, "items": null } }, "items": null } } } } } } } } }