新功能(#18): 用户提现记录支持区分提现和退佣 (#18)

Co-authored-by: multica-agent <github@multica.ai>
This commit is contained in:
2026-06-10 00:19:12 -07:00
committed by GitHub
parent 9b5ff89ee8
commit f5ad26b943
5 changed files with 279 additions and 7 deletions
+4 -2
View File
@@ -2540,8 +2540,9 @@ type QueryUserSubscribeNodeListResponse struct {
}
type QueryWithdrawalLogListRequest struct {
Page int `form:"page"`
Size int `form:"size"`
Page int `form:"page"`
Size int `form:"size"`
BizType string `form:"biz_type" validate:"omitempty,oneof=withdrawal commission_refund"`
}
type QueryWithdrawalLogListResponse struct {
@@ -3885,6 +3886,7 @@ type WeeklyStat struct {
type WithdrawalLog struct {
Id int64 `json:"id"`
BizType string `json:"biz_type"`
UserId int64 `json:"user_id"`
Amount int64 `json:"amount"`
Content string `json:"content"`