You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package model
-
- import (
- "time"
- )
-
- // GlobalTransactionDO for persist GlobalTransaction.
- type GlobalTransactionDO struct {
- XID string `xorm:"xid"`
-
- TransactionID int64 `xorm:"transaction_id"`
-
- Status int32 `xorm:"status"`
-
- ApplicationID string `xorm:"application_id"`
-
- TransactionServiceGroup string `xorm:"transaction_service_group"`
-
- TransactionName string `xorm:"transaction_name"`
-
- Timeout int32 `xorm:"timeout"`
-
- BeginTime int64 `xorm:"begin_time"`
-
- ApplicationData []byte `xorm:"application_data"`
-
- GmtCreate time.Time `xorm:"gmt_create"`
-
- GmtModified time.Time `xorm:"gmt_modified"`
- }
|