liurunyu
2025-04-27 c31ceac27566f179466b3d692f76c4b8556ca183
pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/config/VirtualCardInUseInterceptor.java
@@ -17,7 +17,7 @@
import java.lang.reflect.Method;
/**
 * 拦截虚拟卡表的更新操作,设置占用状态操作的使不能
 * 拦截虚拟卡表的更新操作,使不能设置占用状态操作。
 */
@Intercepts({
        @Signature(
@@ -42,7 +42,7 @@
        if (entity instanceof SeVirtualCard) {
            MappedStatement mappedStatement = (MappedStatement) invocation.getArgs()[MAPPED_STATEMENT_INDEX];
            SqlCommandType commandType = mappedStatement.getSqlCommandType();
            if (commandType.equals(SqlCommandType.INSERT)) {
            if (commandType.equals(SqlCommandType.UPDATE)) {
                Class<?> entityClass = entity.getClass();
                Method setInUse = null;
                try {