新增支付配置备份导出功能

This commit is contained in:
yml2213
2026-06-07 14:11:16 +08:00
parent 53eb4acad8
commit 9740ff8799
11 changed files with 161 additions and 14 deletions
@@ -106,3 +106,13 @@ type ListResponse struct {
Page int `json:"page"`
PageSize int `json:"page_size"`
}
// ExportBackup 支付配置备份导出内容。
type ExportBackup struct {
Type string `json:"type"`
Version int `json:"version"`
ExportedAt string `json:"exported_at"`
ExportedBy uint64 `json:"exported_by"`
Total int `json:"total"`
Configs []ConfigDTO `json:"configs"`
}