GenGid 2 MustGenGid

This commit is contained in:
yedf2 2021-07-23 13:49:56 +08:00
parent 1961ad806d
commit b5ae9403bb
16 changed files with 113 additions and 94 deletions

View File

@ -121,10 +121,10 @@ func ThroughBarrierCall(db *sql.DB, transInfo *TransInfo, busiCall BusiFunc) (re
if result.Valid { // 数据库里有上一次结果,返回上一次的结果 if result.Valid { // 数据库里有上一次结果,返回上一次的结果
res = json.Unmarshal([]byte(result.String), &res) res = json.Unmarshal([]byte(result.String), &res)
return return
} else { // 数据库里没有上次的结果,属于重复空补偿,直接返回成功
res = common.MS{"dtm_result": "SUCCESS"}
return
} }
// 数据库里没有上次的结果,属于重复空补偿,直接返回成功
res = common.MS{"dtm_result": "SUCCESS"}
return
} }
res, rerr = busiCall(db) res, rerr = busiCall(db)
if rerr == nil { // 正确返回了,需要将结果保存到数据库 if rerr == nil { // 正确返回了,需要将结果保存到数据库

View File

@ -2,7 +2,6 @@ package dtmcli
import ( import (
"fmt" "fmt"
"strings"
jsonitor "github.com/json-iterator/go" jsonitor "github.com/json-iterator/go"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
@ -55,11 +54,9 @@ func (s *Msg) Add(action string, postData interface{}) *Msg {
func (s *Msg) Submit() error { func (s *Msg) Submit() error {
logrus.Printf("committing %s body: %v", s.Gid, &s.MsgData) logrus.Printf("committing %s body: %v", s.Gid, &s.MsgData)
resp, err := common.RestyClient.R().SetBody(&s.MsgData).Post(fmt.Sprintf("%s/submit", s.Server)) resp, err := common.RestyClient.R().SetBody(&s.MsgData).Post(fmt.Sprintf("%s/submit", s.Server))
if err != nil { rerr := CheckDtmResponse(resp, err)
return err if rerr != nil {
} return rerr
if !strings.Contains(resp.String(), "SUCCESS") {
return fmt.Errorf("submit failed: %v", resp.Body())
} }
s.Gid = jsonitor.Get(resp.Body(), "gid").ToString() s.Gid = jsonitor.Get(resp.Body(), "gid").ToString()
return nil return nil
@ -70,11 +67,9 @@ func (s *Msg) Prepare(queryPrepared string) error {
s.QueryPrepared = common.OrString(queryPrepared, s.QueryPrepared) s.QueryPrepared = common.OrString(queryPrepared, s.QueryPrepared)
logrus.Printf("preparing %s body: %v", s.Gid, &s.MsgData) logrus.Printf("preparing %s body: %v", s.Gid, &s.MsgData)
resp, err := common.RestyClient.R().SetBody(&s.MsgData).Post(fmt.Sprintf("%s/prepare", s.Server)) resp, err := common.RestyClient.R().SetBody(&s.MsgData).Post(fmt.Sprintf("%s/prepare", s.Server))
if err != nil { rerr := CheckDtmResponse(resp, err)
return err if rerr != nil {
} return rerr
if !strings.Contains(resp.String(), "SUCCESS") {
return fmt.Errorf("prepare failed: %v", resp.Body())
} }
return nil return nil
} }

View File

@ -2,7 +2,6 @@ package dtmcli
import ( import (
"fmt" "fmt"
"strings"
jsonitor "github.com/json-iterator/go" jsonitor "github.com/json-iterator/go"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
@ -56,11 +55,9 @@ func (s *Saga) Add(action string, compensate string, postData interface{}) *Saga
func (s *Saga) Submit() error { func (s *Saga) Submit() error {
logrus.Printf("committing %s body: %v", s.Gid, &s.SagaData) logrus.Printf("committing %s body: %v", s.Gid, &s.SagaData)
resp, err := common.RestyClient.R().SetBody(&s.SagaData).Post(fmt.Sprintf("%s/submit", s.Server)) resp, err := common.RestyClient.R().SetBody(&s.SagaData).Post(fmt.Sprintf("%s/submit", s.Server))
if err != nil { rerr := CheckDtmResponse(resp, err)
return err if rerr != nil {
} return rerr
if !strings.Contains(resp.String(), "SUCCESS") {
return fmt.Errorf("submit failed: %v", resp.Body())
} }
s.Gid = jsonitor.Get(resp.Body(), "gid").ToString() s.Gid = jsonitor.Get(resp.Body(), "gid").ToString()
return nil return nil

View File

@ -27,29 +27,28 @@ func TccGlobalTransaction(dtm string, gid string, tccFunc TccGlobalFunc) (rerr e
"trans_type": "tcc", "trans_type": "tcc",
} }
defer func() { defer func() {
var resp *resty.Response
var err error var err error
var x interface{} var x interface{}
if x = recover(); x != nil || rerr != nil { if x = recover(); x != nil || rerr != nil {
_, err = common.RestyClient.R().SetBody(data).Post(dtm + "/abort") resp, err = common.RestyClient.R().SetBody(data).Post(dtm + "/abort")
} else { } else {
_, err = common.RestyClient.R().SetBody(data).Post(dtm + "/submit") resp, err = common.RestyClient.R().SetBody(data).Post(dtm + "/submit")
} }
if err != nil { err2 := CheckDtmResponse(resp, err)
logrus.Errorf("submitting or abort global transaction error: %v", err) if err2 != nil {
logrus.Errorf("submitting or abort global transaction error: %v", err2)
} }
if x != nil { if x != nil {
panic(x) panic(x)
} }
}() }()
tcc := &Tcc{Dtm: dtm, Gid: gid} tcc := &Tcc{Dtm: dtm, Gid: gid}
resp, rerr := common.RestyClient.R().SetBody(data).Post(tcc.Dtm + "/prepare") resp, err := common.RestyClient.R().SetBody(data).Post(tcc.Dtm + "/prepare")
rerr = CheckDtmResponse(resp, err)
if rerr != nil { if rerr != nil {
return return
} }
if !strings.Contains(resp.String(), "SUCCESS") {
rerr = fmt.Errorf("bad response: %s", resp.String())
return
}
rerr = tccFunc(tcc) rerr = tccFunc(tcc)
return return
} }

View File

@ -2,18 +2,33 @@ package dtmcli
import ( import (
"fmt" "fmt"
"strings"
"github.com/go-resty/resty/v2"
"github.com/yedf/dtm/common" "github.com/yedf/dtm/common"
) )
// GenGid generate a new gid // MustGenGid generate a new gid
func GenGid(server string) string { func MustGenGid(server string) string {
res := common.MS{} res := common.MS{}
_, err := common.RestyClient.R().SetResult(&res).Get(server + "/newGid") resp, err := common.RestyClient.R().SetResult(&res).Get(server + "/newGid")
e2p(err) if err != nil || res["gid"] == "" {
panic(fmt.Errorf("newGid error: %v, resp: %s", err, resp))
}
return res["gid"] return res["gid"]
} }
// CheckDtmResponse check the response of dtm, if not ok ,generate error
func CheckDtmResponse(resp *resty.Response, err error) error {
if err != nil {
return err
}
if !strings.Contains(resp.String(), "SUCCESS") {
return fmt.Errorf("dtm response failed: %s", resp.String())
}
return nil
}
// IDGenerator used to generate a branch id // IDGenerator used to generate a branch id
type IDGenerator struct { type IDGenerator struct {
parentID string parentID string

21
dtmcli/types_test.go Normal file
View File

@ -0,0 +1,21 @@
package dtmcli
import (
"testing"
"github.com/stretchr/testify/assert"
"github.com/yedf/dtm/common"
)
func TestTypes(t *testing.T) {
err := common.CatchP(func() {
idGen := IDGenerator{parentID: "12345678901234567890123"}
idGen.NewBranchID()
})
assert.Error(t, err)
err = common.CatchP(func() {
idGen := IDGenerator{branchID: 99}
idGen.NewBranchID()
})
assert.Error(t, err)
}

View File

@ -35,16 +35,6 @@ type Xa struct {
Gid string Gid string
} }
// GetParams get xa params map
func (x *Xa) GetParams(branchID string) common.MS {
return common.MS{
"gid": x.Gid,
"trans_type": "xa",
"branch_id": branchID,
"branch_type": "action",
}
}
// XaFromReq construct xa info from request // XaFromReq construct xa info from request
func XaFromReq(c *gin.Context) *Xa { func XaFromReq(c *gin.Context) *Xa {
return &Xa{ return &Xa{
@ -53,20 +43,17 @@ func XaFromReq(c *gin.Context) *Xa {
} }
} }
// NewXaBranchID generate a xa branch id
func (x *Xa) NewXaBranchID() string {
return x.Gid + "-" + x.NewBranchID()
}
// NewXaClient construct a xa client // NewXaClient construct a xa client
func NewXaClient(server string, mysqlConf map[string]string, app *gin.Engine, callbackURL string) *XaClient { func NewXaClient(server string, mysqlConf map[string]string, app *gin.Engine, callbackURL string) (*XaClient, error) {
xa := &XaClient{ xa := &XaClient{
Server: server, Server: server,
Conf: mysqlConf, Conf: mysqlConf,
CallbackURL: callbackURL, CallbackURL: callbackURL,
} }
u, err := url.Parse(callbackURL) u, err := url.Parse(callbackURL)
e2p(err) if err != nil {
return nil, err
}
app.POST(u.Path, common.WrapHandler(func(c *gin.Context) (interface{}, error) { app.POST(u.Path, common.WrapHandler(func(c *gin.Context) (interface{}, error) {
type CallbackReq struct { type CallbackReq struct {
Gid string `json:"gid"` Gid string `json:"gid"`
@ -75,7 +62,9 @@ func NewXaClient(server string, mysqlConf map[string]string, app *gin.Engine, ca
} }
req := CallbackReq{} req := CallbackReq{}
b, err := c.GetRawData() b, err := c.GetRawData()
e2p(err) if err != nil {
return nil, err
}
common.MustUnmarshal(b, &req) common.MustUnmarshal(b, &req)
tx, my := common.DbAlone(xa.Conf) tx, my := common.DbAlone(xa.Conf)
defer my.Close() defer my.Close()
@ -89,7 +78,7 @@ func NewXaClient(server string, mysqlConf map[string]string, app *gin.Engine, ca
} }
return M{"dtm_result": "SUCCESS"}, nil return M{"dtm_result": "SUCCESS"}, nil
})) }))
return xa return xa, nil
} }
// XaLocalTransaction start a xa local transaction // XaLocalTransaction start a xa local transaction
@ -131,17 +120,19 @@ func (xc *XaClient) XaGlobalTransaction(gid string, transFunc XaGlobalFunc) erro
} }
} }
}() }()
resp, rerr := common.RestyClient.R().SetBody(data).Post(xc.Server + "/prepare") resp, err := common.RestyClient.R().SetBody(data).Post(xc.Server + "/prepare")
if !strings.Contains(resp.String(), "SUCCESS") { rerr := CheckDtmResponse(resp, err)
return fmt.Errorf("unexpected result: %s", resp.String()) if rerr != nil {
return rerr
} }
rerr = transFunc(&xa) rerr = transFunc(&xa)
if rerr != nil { if rerr != nil {
return rerr return rerr
} }
resp, rerr = common.RestyClient.R().SetBody(data).Post(xc.Server + "/submit") resp, err = common.RestyClient.R().SetBody(data).Post(xc.Server + "/submit")
if !strings.Contains(resp.String(), "SUCCESS") { rerr = CheckDtmResponse(resp, err)
return fmt.Errorf("unexpected result: %s err: %v", resp.String(), rerr) if rerr != nil {
return rerr
} }
return nil return nil
} }
@ -159,7 +150,7 @@ func (x *Xa) CallBranch(body interface{}, url string) (*resty.Response, error) {
}). }).
Post(url) Post(url)
if strings.Contains(resp.String(), "FAILURE") { if strings.Contains(resp.String(), "FAILURE") {
return resp, fmt.Errorf("unexpected result: %s err: %v", resp.String(), err) return resp, fmt.Errorf("FAILURE result: %s err: %v", resp.String(), err)
} }
return resp, err return resp, err
} }

View File

@ -51,6 +51,13 @@ func TestCover(t *testing.T) {
go CronExpiredTrans(1) go CronExpiredTrans(1)
} }
func TestType(t *testing.T) {
err := common.CatchP(func() {
dtmcli.MustGenGid("http://localhost:8080/api/no")
})
assert.Error(t, err)
}
func getTransStatus(gid string) string { func getTransStatus(gid string) string {
sm := TransGlobal{} sm := TransGlobal{}
dbr := dbGet().Model(&sm).Where("gid=?", gid).First(&sm) dbr := dbGet().Model(&sm).Where("gid=?", gid).First(&sm)

View File

@ -1,6 +1,7 @@
package dtmsvr package dtmsvr
import ( import (
"fmt"
"testing" "testing"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
@ -11,11 +12,17 @@ import (
) )
func TestXa(t *testing.T) { func TestXa(t *testing.T) {
xaLocalError(t)
xaNormal(t) xaNormal(t)
xaRollback(t) xaRollback(t)
} }
func xaLocalError(t *testing.T) {
err := examples.XaClient.XaGlobalTransaction("xaLocalError", func(xa *dtmcli.Xa) error {
return fmt.Errorf("an error")
})
assert.Error(t, err, fmt.Errorf("an error"))
}
func xaNormal(t *testing.T) { func xaNormal(t *testing.T) {
xc := examples.XaClient xc := examples.XaClient
gid := "xaNormal" gid := "xaNormal"

View File

@ -18,7 +18,7 @@ func MsgFireRequest() string {
TransInResult: "SUCCESS", TransInResult: "SUCCESS",
TransOutResult: "SUCCESS", TransOutResult: "SUCCESS",
} }
msg := dtmcli.NewMsg(DtmServer, dtmcli.GenGid(DtmServer)). msg := dtmcli.NewMsg(DtmServer, dtmcli.MustGenGid(DtmServer)).
Add(Busi+"/TransOut", req). Add(Busi+"/TransOut", req).
Add(Busi+"/TransIn", req) Add(Busi+"/TransIn", req)
err := msg.Prepare(Busi + "/TransQuery") err := msg.Prepare(Busi + "/TransQuery")

View File

@ -18,7 +18,7 @@ func SagaFireRequest() string {
TransInResult: "SUCCESS", TransInResult: "SUCCESS",
TransOutResult: "SUCCESS", TransOutResult: "SUCCESS",
} }
saga := dtmcli.NewSaga(DtmServer, dtmcli.GenGid(DtmServer)). saga := dtmcli.NewSaga(DtmServer, dtmcli.MustGenGid(DtmServer)).
Add(Busi+"/TransOut", Busi+"/TransOutRevert", req). Add(Busi+"/TransOut", Busi+"/TransOutRevert", req).
Add(Busi+"/TransIn", Busi+"/TransInRevert", req) Add(Busi+"/TransIn", Busi+"/TransInRevert", req)
logrus.Printf("saga busi trans submit") logrus.Printf("saga busi trans submit")

View File

@ -14,7 +14,7 @@ import (
func SagaBarrierFireRequest() string { func SagaBarrierFireRequest() string {
logrus.Printf("a busi transaction begin") logrus.Printf("a busi transaction begin")
req := &TransReq{Amount: 30} req := &TransReq{Amount: 30}
saga := dtmcli.NewSaga(DtmServer, dtmcli.GenGid(DtmServer)). saga := dtmcli.NewSaga(DtmServer, dtmcli.MustGenGid(DtmServer)).
Add(Busi+"/SagaBTransOut", Busi+"/SagaBTransOutCompensate", req). Add(Busi+"/SagaBTransOut", Busi+"/SagaBTransOutCompensate", req).
Add(Busi+"/SagaBTransIn", Busi+"/SagaBTransInCompensate", req) Add(Busi+"/SagaBTransIn", Busi+"/SagaBTransInCompensate", req)
logrus.Printf("busi trans submit") logrus.Printf("busi trans submit")

View File

@ -11,16 +11,11 @@ import (
func TccSetup(app *gin.Engine) { func TccSetup(app *gin.Engine) {
app.POST(BusiAPI+"/TransInTcc", common.WrapHandler(func(c *gin.Context) (interface{}, error) { app.POST(BusiAPI+"/TransInTcc", common.WrapHandler(func(c *gin.Context) (interface{}, error) {
tcc, err := dtmcli.TccFromReq(c) tcc, err := dtmcli.TccFromReq(c)
if err != nil { e2p(err)
return nil, err
}
req := reqFrom(c) req := reqFrom(c)
logrus.Printf("Trans in %d here, and Trans in another %d in call2 ", req.Amount/2, req.Amount/2) logrus.Printf("Trans in %d here, and Trans in another %d in call2 ", req.Amount/2, req.Amount/2)
_, rerr := tcc.CallBranch(&TransReq{Amount: req.Amount / 2}, Busi+"/TransIn", Busi+"/TransInConfirm", Busi+"/TransInRevert") _, rerr := tcc.CallBranch(&TransReq{Amount: req.Amount / 2}, Busi+"/TransIn", Busi+"/TransInConfirm", Busi+"/TransInRevert")
if rerr != nil { e2p(rerr)
return nil, rerr
}
return M{"dtm_result": "SUCCESS"}, nil return M{"dtm_result": "SUCCESS"}, nil
})) }))
@ -29,16 +24,12 @@ func TccSetup(app *gin.Engine) {
// TccFireRequest 1 // TccFireRequest 1
func TccFireRequest() string { func TccFireRequest() string {
logrus.Printf("tcc transaction begin") logrus.Printf("tcc transaction begin")
gid := dtmcli.GenGid(DtmServer) gid := dtmcli.MustGenGid(DtmServer)
err := dtmcli.TccGlobalTransaction(DtmServer, gid, func(tcc *dtmcli.Tcc) (rerr error) { err := dtmcli.TccGlobalTransaction(DtmServer, gid, func(tcc *dtmcli.Tcc) (rerr error) {
res1, rerr := tcc.CallBranch(&TransReq{Amount: 30}, Busi+"/TransOut", Busi+"/TransOutConfirm", Busi+"/TransOutRevert") res1, rerr := tcc.CallBranch(&TransReq{Amount: 30}, Busi+"/TransOut", Busi+"/TransOutConfirm", Busi+"/TransOutRevert")
if rerr != nil { e2p(rerr)
return
}
res2, rerr := tcc.CallBranch(&TransReq{Amount: 30}, Busi+"/TransInTcc", Busi+"/TransInConfirm", Busi+"/TransInRevert") res2, rerr := tcc.CallBranch(&TransReq{Amount: 30}, Busi+"/TransInTcc", Busi+"/TransInConfirm", Busi+"/TransInRevert")
if rerr != nil { e2p(rerr)
return
}
logrus.Printf("tcc returns: %s, %s", res1.String(), res2.String()) logrus.Printf("tcc returns: %s, %s", res1.String(), res2.String())
return return
}) })

View File

@ -13,22 +13,12 @@ import (
// TccBarrierFireRequest 1 // TccBarrierFireRequest 1
func TccBarrierFireRequest() string { func TccBarrierFireRequest() string {
logrus.Printf("tcc transaction begin") logrus.Printf("tcc transaction begin")
gid := dtmcli.GenGid(DtmServer) gid := dtmcli.MustGenGid(DtmServer)
err := dtmcli.TccGlobalTransaction(DtmServer, gid, func(tcc *dtmcli.Tcc) (rerr error) { err := dtmcli.TccGlobalTransaction(DtmServer, gid, func(tcc *dtmcli.Tcc) (rerr error) {
res1, rerr := tcc.CallBranch(&TransReq{Amount: 30}, Busi+"/TccBTransOutTry", Busi+"/TccBTransOutConfirm", Busi+"/TccBTransOutCancel") res1, rerr := tcc.CallBranch(&TransReq{Amount: 30}, Busi+"/TccBTransOutTry", Busi+"/TccBTransOutConfirm", Busi+"/TccBTransOutCancel")
if rerr != nil { common.CheckRestySuccess(res1, rerr)
return
}
if res1.StatusCode() != 200 {
return fmt.Errorf("bad status code: %d", res1.StatusCode())
}
res2, rerr := tcc.CallBranch(&TransReq{Amount: 30}, Busi+"/TccBTransInTry", Busi+"/TccBTransInConfirm", Busi+"/TccBTransInCancel") res2, rerr := tcc.CallBranch(&TransReq{Amount: 30}, Busi+"/TccBTransInTry", Busi+"/TccBTransInConfirm", Busi+"/TccBTransInCancel")
if rerr != nil { common.CheckRestySuccess(res1, rerr)
return
}
if res2.StatusCode() != 200 {
return fmt.Errorf("bad status code: %d", res2.StatusCode())
}
logrus.Printf("tcc returns: %s, %s", res1.String(), res2.String()) logrus.Printf("tcc returns: %s, %s", res1.String(), res2.String())
return return
}) })

View File

@ -2,6 +2,7 @@ package examples
import ( import (
"fmt" "fmt"
"strings"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
@ -38,7 +39,7 @@ func dbGet() *common.DB {
// XaFireRequest 1 // XaFireRequest 1
func XaFireRequest() string { func XaFireRequest() string {
gid := dtmcli.GenGid(DtmServer) gid := dtmcli.MustGenGid(DtmServer)
err := XaClient.XaGlobalTransaction(gid, func(xa *dtmcli.Xa) (rerr error) { err := XaClient.XaGlobalTransaction(gid, func(xa *dtmcli.Xa) (rerr error) {
defer common.P2E(&rerr) defer common.P2E(&rerr)
req := GenTransReq(30, false, false) req := GenTransReq(30, false, false)
@ -57,18 +58,23 @@ func XaSetup(app *gin.Engine) {
app.POST(BusiAPI+"/TransInXa", common.WrapHandler(xaTransIn)) app.POST(BusiAPI+"/TransInXa", common.WrapHandler(xaTransIn))
app.POST(BusiAPI+"/TransOutXa", common.WrapHandler(xaTransOut)) app.POST(BusiAPI+"/TransOutXa", common.WrapHandler(xaTransOut))
config.Mysql["database"] = "dtm_busi" config.Mysql["database"] = "dtm_busi"
XaClient = dtmcli.NewXaClient(DtmServer, config.Mysql, app, Busi+"/xa") var err error
XaClient, err = dtmcli.NewXaClient(DtmServer, config.Mysql, app, Busi+"/xa")
e2p(err)
} }
func xaTransIn(c *gin.Context) (interface{}, error) { func xaTransIn(c *gin.Context) (interface{}, error) {
err := XaClient.XaLocalTransaction(c, func(db *common.DB, xa *dtmcli.Xa) (rerr error) { err := XaClient.XaLocalTransaction(c, func(db *common.DB, xa *dtmcli.Xa) (rerr error) {
req := reqFrom(c) req := reqFrom(c)
if req.TransInResult != "SUCCESS" { if req.TransInResult != "SUCCESS" {
return fmt.Errorf("tranIn failed") return fmt.Errorf("tranIn FAILURE")
} }
dbr := db.Exec("update user_account set balance=balance+? where user_id=?", req.Amount, 2) dbr := db.Exec("update user_account set balance=balance+? where user_id=?", req.Amount, 2)
return dbr.Error return dbr.Error
}) })
if err != nil && strings.Contains(err.Error(), "FAILURE") {
return M{"dtm_result": "FAILURE"}, nil
}
e2p(err) e2p(err)
return M{"dtm_result": "SUCCESS"}, nil return M{"dtm_result": "SUCCESS"}, nil
} }

View File

@ -31,7 +31,7 @@ func QsStartSvr() {
func QsFireRequest() string { func QsFireRequest() string {
req := &gin.H{"amount": 30} // 微服务的载荷 req := &gin.H{"amount": 30} // 微服务的载荷
// DtmServer为DTM服务的地址 // DtmServer为DTM服务的地址
saga := dtmcli.NewSaga(DtmServer, dtmcli.GenGid(DtmServer)). saga := dtmcli.NewSaga(DtmServer, dtmcli.MustGenGid(DtmServer)).
// 添加一个TransOut的子事务正向操作为url: qsBusi+"/TransOut" 逆向操作为url: qsBusi+"/TransOutCompensate" // 添加一个TransOut的子事务正向操作为url: qsBusi+"/TransOut" 逆向操作为url: qsBusi+"/TransOutCompensate"
Add(qsBusi+"/TransOut", qsBusi+"/TransOutCompensate", req). Add(qsBusi+"/TransOut", qsBusi+"/TransOutCompensate", req).
// 添加一个TransIn的子事务正向操作为url: qsBusi+"/TransOut" 逆向操作为url: qsBusi+"/TransInCompensate" // 添加一个TransIn的子事务正向操作为url: qsBusi+"/TransOut" 逆向操作为url: qsBusi+"/TransInCompensate"