definitions: contextx.Response: properties: code: type: integer data: {} msg: type: string type: object model.ScheduleTask: properties: amount: description: |- Parameter string `json:"parameter"` //产品名称 Customer string `json:"customer"` DeliverDate string `json:"deliverDate"` OrderAttr string `json:"orderAttr"` type: number data: description: 排程任务json串 type: string endTime: type: integer id: type: integer orderId: description: 订单id type: string productId: description: 订单id type: string productName: description: 产品名称 type: string startTime: type: integer unit: type: string type: object request.TaskInfo: properties: device: description: 设备 type: string orderId: description: 订单号 type: string password: description: 产品 type: string procedure: description: 工序 type: string workOrder: description: 工单 type: string type: object info: contact: {} paths: /v1/notice/task/start: post: parameters: - description: 查询参数 in: body name: object required: true schema: $ref: '#/definitions/request.TaskInfo' produces: - application/json responses: "200": description: 成功 schema: $ref: '#/definitions/contextx.Response' summary: 任务开启通知 tags: - Base /v1/task/list: get: parameters: - description: 页码 in: query name: page type: integer - description: 每页大小 in: query name: pageSize type: integer produces: - application/json responses: "200": description: 成功 schema: allOf: - $ref: '#/definitions/contextx.Response' - properties: data: items: $ref: '#/definitions/model.ScheduleTask' type: array type: object summary: 任务开启通知 tags: - Base swagger: "2.0"