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.

global_transaction_do.go 603 B

4 years ago
4 years ago
4 years ago
123456789101112131415161718192021222324252627282930
  1. package model
  2. import (
  3. "time"
  4. )
  5. // GlobalTransactionDO for persist GlobalTransaction.
  6. type GlobalTransactionDO struct {
  7. XID string `xorm:"xid"`
  8. TransactionID int64 `xorm:"transaction_id"`
  9. Status int32 `xorm:"status"`
  10. ApplicationID string `xorm:"application_id"`
  11. TransactionServiceGroup string `xorm:"transaction_service_group"`
  12. TransactionName string `xorm:"transaction_name"`
  13. Timeout int32 `xorm:"timeout"`
  14. BeginTime int64 `xorm:"begin_time"`
  15. ApplicationData []byte `xorm:"application_data"`
  16. GmtCreate time.Time `xorm:"gmt_create"`
  17. GmtModified time.Time `xorm:"gmt_modified"`
  18. }