9 lines
224 B
Go
9 lines
224 B
Go
|
package api
|
||
|
|
||
|
type PayReq struct {
|
||
|
Username string `json:"username"` //用户名
|
||
|
Password string `json:"password"` //密码
|
||
|
Amount int64 `json:"amount"` //单位分
|
||
|
Title string `json:"title"` //转账标题
|
||
|
}
|