You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trea1/TransactionStatus.java

12 lines
250 B

package com.soa.microservice.core;
/**
* 事务状态枚举
*/
public enum TransactionStatus {
BEGIN, // 事务开始
PREPARED, // 预提交成功
COMMITTED, // 已提交
ROLLED_BACK,// 已回滚
FAILED // 失败
}