package api
type PayReq struct {
Username string `json:"username"` //用户名
Password string `json:"password"` //密码
Amount int64 `json:"amount"` //单位分
Title string `json:"title"` //转账标题
PayType string `json:"pay_type"` //支付类型 weixin/alipay
}