enterprise/server/api/pay.go

9 lines
224 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"` //转账标题
}