添加钱包记录

finance
杨赟 2 years ago
parent 1242de153c
commit 11c811d68e

@ -21,11 +21,13 @@ const (
) )
type ArgsWalletDirect struct { type ArgsWalletDirect struct {
UserId uint // 客户id UserId uint // 客户id
WalletType walletType // 收支类型 WalletType walletType // 收支类型
Amount decimal.Decimal // 金额 正数 Amount decimal.Decimal // 金额 正数
ServiceId uint // 服务id ServiceId uint // 服务id
Remark string // 备注信息 TradeChannel string // 交易渠道
TradeSerialSn string // 交易渠道流水号
Remark string // 备注信息
} }
// Direct @Title 直接消费 // Direct @Title 直接消费
@ -39,12 +41,14 @@ func (w *wallet) Direct(ctx context.Context, args ArgsWalletDirect) error {
} }
type ArgsWalletCreate struct { type ArgsWalletCreate struct {
UserId uint // 客户id UserId uint // 客户id
WalletType walletType // 收支类型 WalletType walletType // 收支类型
Amount decimal.Decimal // 金额 正数 Amount decimal.Decimal // 金额 正数
ServiceId uint // 服务id ServiceId uint // 服务id
Remark string // 备注信息 TradeChannel string // 交易渠道
CancelSecond int64 // 自动取消秒 TradeSerialSn string // 交易渠道流水号
Remark string // 备注信息
CancelSecond int64 // 自动取消秒
} }
// Create @Title 创建消费 // Create @Title 创建消费

Loading…
Cancel
Save