feat: 集成微信收款服务

This commit is contained in:
RockYang
2023-07-20 17:46:32 +08:00
parent d24b3c46bf
commit 1e1bcd4a30
9 changed files with 262 additions and 51 deletions

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

@@ -0,0 +1,11 @@
package model
// 用户打赏
type Reward struct {
BaseModel
TxId string // 交易ID
Amount float64 // 打赏金额
Remark string // 打赏备注
Status bool // 核销状态
}