enterprise/server/api/pay.go

10 lines
288 B
Go
Raw Normal View History

2025-03-11 10:59:41 +08:00
package api
type PayReq struct {
Username string `json:"username"` //用户名
Password string `json:"password"` //密码
Amount int64 `json:"amount"` //单位分
Title string `json:"title"` //转账标题
2025-03-11 11:32:20 +08:00
PayType string `json:"pay_type"` //支付类型 weixin/alipay
2025-03-11 10:59:41 +08:00
}