| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "openapi": "3.0.1",
- "info": {
- "title": "printservice",
- "version": "1.0"
- },
- "paths": {
- "/api/printer/list": {
- "get": {
- "tags": [
- "Printer"
- ],
- "responses": {
- "200": {
- "description": "OK"
- }
- }
- }
- },
- "/api/printer/get-local-ip": {
- "get": {
- "tags": [
- "Printer"
- ],
- "responses": {
- "200": {
- "description": "OK"
- }
- }
- }
- },
- "/api/printer/print-ticket": {
- "post": {
- "tags": [
- "Printer"
- ],
- "requestBody": {
- "content": {
- "multipart/form-data": {
- "schema": {
- "type": "object",
- "properties": {
- "file": {
- "type": "string",
- "format": "binary"
- },
- "printerName": {
- "type": "string"
- }
- }
- },
- "encoding": {
- "file": {
- "style": "form"
- },
- "printerName": {
- "style": "form"
- }
- }
- }
- }
- },
- "responses": {
- "200": {
- "description": "OK"
- }
- }
- }
- }
- },
- "components": { }
- }
|