17 lines
553 B
Go
17 lines
553 B
Go
package financeapplication
|
|
|
|
type createApplicationRequest struct {
|
|
AppCode string `json:"appCode"`
|
|
Operation string `json:"operation"`
|
|
WalletIdentity string `json:"walletIdentity"`
|
|
TargetUserID string `json:"targetUserId"`
|
|
CoinAmount int64 `json:"coinAmount"`
|
|
RechargeAmount float64 `json:"rechargeAmount"`
|
|
CredentialImageURL string `json:"credentialImageUrl"`
|
|
CredentialText string `json:"credentialText"`
|
|
}
|
|
|
|
type auditApplicationRequest struct {
|
|
AuditRemark string `json:"auditRemark"`
|
|
}
|