migrate controllers
Some checks failed
build quyun / Build (push) Failing after 1m30s

This commit is contained in:
2025-12-19 23:33:02 +08:00
parent 557a641f41
commit 49072ddd79
37 changed files with 1944 additions and 69 deletions

View File

@@ -2,6 +2,7 @@ package fields
import (
"github.com/go-pay/gopay/wechat/v3"
"go.ipao.vip/gen/types"
)
// swagger:enum OrderStatus
@@ -14,3 +15,8 @@ type OrderMeta struct {
RefundNotify *wechat.V3DecryptRefundResult `json:"refund_notify"`
CostBalance int64 `json:"cost_balance"` // 余额支付的金额
}
// JsonType
func (o OrderMeta) JsonType() types.JSONType[OrderMeta] {
return types.NewJSONType(o)
}