12345678910111213141516171819202122232425262728293031323334353637383940 |
- package http_model
- type GetRechargeRecordsRequest struct {
- PageSize int32 `json:"page_size"`
- PageNum int32 `json:"page_num"`
- Status int32 `json:"status"`
- BusinessName string `json:"business_name"`
- UserId int64 `json:"user_id"`
- RechargeMethod int32 `json:"recharge_method"`
- CommitAt string `json:"commit_at"`
- ConfirmAt string `json:"confirm_at"`
- }
- type RechargeRecordsPreview struct {
- RechargeId string `json:"recharge_id"`
- EnterpriseID int64 `json:"enterprise_id"`
- UserId int64 `json:"user_id"`
- BusinessName string `json:"business_name"`
- RechargeAmount float64 `json:"recharge_amount"`
- RechargeMethod string `json:"recharge_method"`
- TransferVoucher string `json:"transfer_voucher"` // 转账凭证
- Phone string `json:"phone"`
- CommitAt string `json:"commit_at"`
- ConfirmAt string `json:"confirm_at"`
- }
- type RechargeRecordsData struct {
- RechargeRecordsPreview []*RechargeRecordsPreview `json:"recharge_records_preview"`
- Total string `json:"total"`
- }
- func NewGetRechargeRecordsRequest() *GetRechargeRecordsRequest {
- return new(GetRechargeRecordsRequest)
- }
- func NewGetRechargeRecordsResponse() *CommonResponse {
- resp := new(CommonResponse)
- resp.Data = new(RechargeRecordsData)
- return resp
- }
|