| 123456789101112131415161718 | package userimport (	"duoduo/models/mysql"	"github.com/shopspring/decimal")type TransGetInput struct {	OpenId    string `json:"openId"`	PidStatus int    `json:"pidStatus"`}type TransGetOutput struct {	Wallet          mysql.Wallet    `json:"wallet"`	ReviewAmount    decimal.Decimal `json:"reviewAmount"`    	CompletedAmount decimal.Decimal `json:"completedAmount"` }
 |