|
@@ -1,5 +1,6 @@
|
|
|
package com.zhongzheng.modules.bank.mapper;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
|
|
|
import com.zhongzheng.modules.bank.bo.QuestionBusinessQueryBo;
|
|
|
import com.zhongzheng.modules.bank.domain.QuestionBusiness;
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
@@ -17,5 +18,6 @@ import java.util.List;
|
|
|
public interface QuestionBusinessMapper extends BaseMapper<QuestionBusiness> {
|
|
|
List<QuestionBusiness> getListById(QuestionBusinessQueryBo bo);
|
|
|
|
|
|
+ @InterceptorIgnore(tenantLine = "true")
|
|
|
void deleteByIdAndTenant(@Param("majorId") Long majorId,@Param("newTenantId") Long newTenantId,@Param("type") Integer type);
|
|
|
}
|