feat: 完成众筹后台管理功能

This commit is contained in:
RockYang
2023-07-24 15:59:29 +08:00
parent 5444ed77ad
commit 2efc669ab2
8 changed files with 160 additions and 373 deletions

11
api/store/vo/reward.go Normal file
View File

@@ -0,0 +1,11 @@
package vo
type Reward struct {
BaseVo
UserId uint `json:"user_id"` // 用户 ID
Username string `json:"username"`
TxId string `json:"tx_id"` // 交易ID
Amount float64 `json:"amount"` // 打赏金额
Remark string `json:"remark"` // 打赏备注
Status bool `json:"status"` // 核销状态
}