实现controller
This commit is contained in:
@@ -349,6 +349,15 @@ definitions:
|
||||
pagination:
|
||||
$ref: '#/definitions/dto.PaginationDTO'
|
||||
type: object
|
||||
dto.ListNotificationResponse:
|
||||
properties:
|
||||
list:
|
||||
items:
|
||||
$ref: '#/definitions/dto.NotificationDTO'
|
||||
type: array
|
||||
pagination:
|
||||
$ref: '#/definitions/dto.PaginationDTO'
|
||||
type: object
|
||||
dto.ListPendingCollectionResponse:
|
||||
properties:
|
||||
list:
|
||||
@@ -552,6 +561,33 @@ definitions:
|
||||
- quantity
|
||||
- toPenID
|
||||
type: object
|
||||
dto.NotificationDTO:
|
||||
properties:
|
||||
alarm_timestamp:
|
||||
type: string
|
||||
created_at:
|
||||
type: string
|
||||
error_message:
|
||||
type: string
|
||||
id:
|
||||
type: integer
|
||||
level:
|
||||
$ref: '#/definitions/zapcore.Level'
|
||||
message:
|
||||
type: string
|
||||
notifier_type:
|
||||
$ref: '#/definitions/notify.NotifierType'
|
||||
status:
|
||||
$ref: '#/definitions/models.NotificationStatus'
|
||||
title:
|
||||
type: string
|
||||
to_address:
|
||||
type: string
|
||||
updated_at:
|
||||
type: string
|
||||
user_id:
|
||||
type: integer
|
||||
type: object
|
||||
dto.PaginationDTO:
|
||||
properties:
|
||||
page:
|
||||
@@ -1557,6 +1593,24 @@ definitions:
|
||||
- ReasonTypePreventive
|
||||
- ReasonTypeTreatment
|
||||
- ReasonTypeHealthCare
|
||||
models.NotificationStatus:
|
||||
enum:
|
||||
- 发送成功
|
||||
- 发送失败
|
||||
- 已跳过
|
||||
type: string
|
||||
x-enum-comments:
|
||||
NotificationStatusFailed: 通知发送失败
|
||||
NotificationStatusSkipped: 通知因某些原因被跳过(例如:用户未配置联系方式)
|
||||
NotificationStatusSuccess: 通知已成功发送
|
||||
x-enum-descriptions:
|
||||
- 通知已成功发送
|
||||
- 通知发送失败
|
||||
- 通知因某些原因被跳过(例如:用户未配置联系方式)
|
||||
x-enum-varnames:
|
||||
- NotificationStatusSuccess
|
||||
- NotificationStatusFailed
|
||||
- NotificationStatusSkipped
|
||||
models.PenStatus:
|
||||
enum:
|
||||
- 空闲
|
||||
@@ -1827,16 +1881,43 @@ definitions:
|
||||
type: object
|
||||
notify.NotifierType:
|
||||
enum:
|
||||
- smtp
|
||||
- wechat
|
||||
- lark
|
||||
- log
|
||||
- 邮件
|
||||
- 企业微信
|
||||
- 飞书
|
||||
- 日志
|
||||
type: string
|
||||
x-enum-varnames:
|
||||
- NotifierTypeSMTP
|
||||
- NotifierTypeWeChat
|
||||
- NotifierTypeLark
|
||||
- NotifierTypeLog
|
||||
zapcore.Level:
|
||||
enum:
|
||||
- 7
|
||||
- -1
|
||||
- 0
|
||||
- 1
|
||||
- 2
|
||||
- 3
|
||||
- 4
|
||||
- 5
|
||||
- -1
|
||||
- 5
|
||||
- 6
|
||||
format: int32
|
||||
type: integer
|
||||
x-enum-varnames:
|
||||
- _numLevels
|
||||
- DebugLevel
|
||||
- InfoLevel
|
||||
- WarnLevel
|
||||
- ErrorLevel
|
||||
- DPanicLevel
|
||||
- PanicLevel
|
||||
- FatalLevel
|
||||
- _minLevel
|
||||
- _maxLevel
|
||||
- InvalidLevel
|
||||
info:
|
||||
contact:
|
||||
email: divano@example.com
|
||||
@@ -2400,6 +2481,105 @@ paths:
|
||||
summary: 获取用药记录列表
|
||||
tags:
|
||||
- 数据监控
|
||||
/api/v1/monitor/notifications:
|
||||
get:
|
||||
description: 根据提供的过滤条件,分页获取通知列表
|
||||
parameters:
|
||||
- in: query
|
||||
name: end_time
|
||||
type: string
|
||||
- enum:
|
||||
- 7
|
||||
- -1
|
||||
- 0
|
||||
- 1
|
||||
- 2
|
||||
- 3
|
||||
- 4
|
||||
- 5
|
||||
- -1
|
||||
- 5
|
||||
- 6
|
||||
format: int32
|
||||
in: query
|
||||
name: level
|
||||
type: integer
|
||||
x-enum-varnames:
|
||||
- _numLevels
|
||||
- DebugLevel
|
||||
- InfoLevel
|
||||
- WarnLevel
|
||||
- ErrorLevel
|
||||
- DPanicLevel
|
||||
- PanicLevel
|
||||
- FatalLevel
|
||||
- _minLevel
|
||||
- _maxLevel
|
||||
- InvalidLevel
|
||||
- enum:
|
||||
- 邮件
|
||||
- 企业微信
|
||||
- 飞书
|
||||
- 日志
|
||||
in: query
|
||||
name: notifier_type
|
||||
type: string
|
||||
x-enum-varnames:
|
||||
- NotifierTypeSMTP
|
||||
- NotifierTypeWeChat
|
||||
- NotifierTypeLark
|
||||
- NotifierTypeLog
|
||||
- in: query
|
||||
name: order_by
|
||||
type: string
|
||||
- in: query
|
||||
name: page
|
||||
type: integer
|
||||
- in: query
|
||||
name: pageSize
|
||||
type: integer
|
||||
- in: query
|
||||
name: start_time
|
||||
type: string
|
||||
- enum:
|
||||
- 发送成功
|
||||
- 发送失败
|
||||
- 已跳过
|
||||
in: query
|
||||
name: status
|
||||
type: string
|
||||
x-enum-comments:
|
||||
NotificationStatusFailed: 通知发送失败
|
||||
NotificationStatusSkipped: 通知因某些原因被跳过(例如:用户未配置联系方式)
|
||||
NotificationStatusSuccess: 通知已成功发送
|
||||
x-enum-descriptions:
|
||||
- 通知已成功发送
|
||||
- 通知发送失败
|
||||
- 通知因某些原因被跳过(例如:用户未配置联系方式)
|
||||
x-enum-varnames:
|
||||
- NotificationStatusSuccess
|
||||
- NotificationStatusFailed
|
||||
- NotificationStatusSkipped
|
||||
- in: query
|
||||
name: user_id
|
||||
type: integer
|
||||
produces:
|
||||
- application/json
|
||||
responses:
|
||||
"200":
|
||||
description: OK
|
||||
schema:
|
||||
allOf:
|
||||
- $ref: '#/definitions/controller.Response'
|
||||
- properties:
|
||||
data:
|
||||
$ref: '#/definitions/dto.ListNotificationResponse'
|
||||
type: object
|
||||
security:
|
||||
- BearerAuth: []
|
||||
summary: 批量查询通知
|
||||
tags:
|
||||
- 数据监控
|
||||
/api/v1/monitor/pending-collections:
|
||||
get:
|
||||
description: 根据提供的过滤条件,分页获取待采集请求
|
||||
|
||||
Reference in New Issue
Block a user