14 lines
273 B
Go
14 lines
273 B
Go
package controller
|
|
|
|
// ReturnPages 分页数据
|
|
type ReturnPages struct {
|
|
Data interface{} `json:"data"`
|
|
Count int64 `json:"count"`
|
|
}
|
|
|
|
// ReturnPayment 充值数据
|
|
type ReturnPayment struct {
|
|
Auth string `json:"auth"`
|
|
Timestamp int64 `json:"timestamp"`
|
|
}
|