plugin/dctw/v1/api/direct/trans.go

110 lines
2.8 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package direct
import (
"encoding/json"
"fmt"
"github.com/go-playground/validator/v10"
)
type Order struct {
Number uint32 `validate:"required" json:"number"`
MerchantId string `validate:"required" json:"merchantId"`
OutTradeNo string `validate:"required" json:"outTradeNo"`
ProductId string `validate:"required" json:"productId"`
AccountType AccountType `validate:"required" json:"accountType"` // 账号类型(1:手机号 2:QQ号 其他0)
RechargeAccount string `validate:"required" json:"rechargeAccount"`
NotifyUrl string `validate:"required" json:"notifyUrl"`
Version string `validate:"required" json:"version"`
}
type OrderResp struct {
Code json.Number `json:"code"`
Message string `json:"message"`
TradeNo string `json:"tradeNo"`
}
type Query struct {
MerchantId string `validate:"required" json:"merchantId"`
OutTradeNo string `validate:"required" json:"outTradeNo"`
Version string `validate:"required" json:"version"`
}
type QueryResp struct {
Code json.Number `json:"code"`
Status OrderStatus `json:"status"`
Message string `json:"message"`
OutTradeNo string `json:"outTradeNo"`
CardCode string `json:"cardCode"`
}
type Notify struct {
MerchantId int `json:"merchantId"`
OutTradeNo string `json:"outTradeNo"`
RechargeAccount string `json:"rechargeAccount"`
Status OrderStatus `json:"status"`
}
func (o *Order) Json() ([]byte, error) {
b, err := json.Marshal(o)
if err != nil {
return nil, err
}
return b, nil
}
func (o *Order) Validate() error {
err := validator.New().Struct(o)
if err != nil {
for _, err = range err.(validator.ValidationErrors) {
return fmt.Errorf("参数有误:" + err.Error())
}
}
return nil
}
func (o *Query) Json() ([]byte, error) {
b, err := json.Marshal(o)
if err != nil {
return nil, err
}
return b, nil
}
func (o *Query) Validate() error {
err := validator.New().Struct(o)
if err != nil {
for _, err = range err.(validator.ValidationErrors) {
return fmt.Errorf("参数有误:" + err.Error())
}
}
return nil
}
func (o *Notify) Json() ([]byte, error) {
b, err := json.Marshal(o)
if err != nil {
return nil, err
}
return b, nil
}
func (o *Notify) Validate() error {
err := validator.New().Struct(o)
if err != nil {
for _, err = range err.(validator.ValidationErrors) {
return fmt.Errorf("参数有误:" + err.Error())
}
}
return nil
}
func (o *OrderResp) GetCode() Code {
// 不能直接定义值对象因为单独定义类型type code json.Number类型无法jsonUnmarshal
return Code(o.Code)
}
func (o *QueryResp) GetCode() Code {
// 不能直接定义值对象因为单独定义类型type code json.Number类型无法jsonUnmarshal
return Code(o.Code)
}