support displaying transactions since the last reconciled time

This commit is contained in:
MaysWind
2026-05-08 00:58:04 +08:00
parent de132dd7fd
commit 75d801f775
45 changed files with 608 additions and 107 deletions
+6
View File
@@ -128,6 +128,12 @@ type AccountModifyRequest struct {
ClientSessionId string `json:"clientSessionId"`
}
// AccountUpdateLastReconciledTimeRequest represents all parameters of account updating last reconciled time request
type AccountUpdateLastReconciledTimeRequest struct {
Id int64 `json:"id,string" binding:"required,min=1"`
LastReconciledTime int64 `json:"lastReconciledTime" binding:"required"`
}
// AccountListRequest represents all parameters of account listing request
type AccountListRequest struct {
VisibleOnly bool `form:"visible_only"`