| 123456789101112131415161718 | package modelsimport "github.com/shopspring/decimal"type CashOutListRequest struct {	OpenId    string `json:"open_id"`	Appid     string `json:"appid"`	PageSize  int    `json:"page_size"`	PageIndex int    `json:"page_index"`}type CashOutListReply struct {	TotalAmount decimal.Decimal `json:"total_amount"` 	CreateAt    string          `json:"create_at"`    	Fee         decimal.Decimal `json:"fee"`          	Amount      decimal.Decimal `json:"amount"`       	Des         string          `json:"des"`}
 |