diff --git a/src/main/java/com/qs/serve/modules/bir/mapper/BirReportAccountBookMapper.java b/src/main/java/com/qs/serve/modules/bir/mapper/BirReportAccountBookMapper.java index 44d606e7..053b534f 100644 --- a/src/main/java/com/qs/serve/modules/bir/mapper/BirReportAccountBookMapper.java +++ b/src/main/java/com/qs/serve/modules/bir/mapper/BirReportAccountBookMapper.java @@ -48,5 +48,24 @@ public interface BirReportAccountBookMapper { @InterceptorIgnore(tenantLine = "true") List> reportAccountBookCenter(@Param("inyear")String inyear); + @Select("call build_region_dispatch()") + @Options(statementType = StatementType.CALLABLE) + @InterceptorIgnore(tenantLine = "true") + void buildRegionDispatch(); + + @Select("call build_bizregion_dispatch()") + @Options(statementType = StatementType.CALLABLE) + @InterceptorIgnore(tenantLine = "true") + void buildBizRegionDispatch(); + + @Select("call build_customer_dispatch()") + @Options(statementType = StatementType.CALLABLE) + @InterceptorIgnore(tenantLine = "true") + void buildCustomerDispatch(); + + @Select("call build_all_dispatch()") + @Options(statementType = StatementType.CALLABLE) + @InterceptorIgnore(tenantLine = "true") + void buildAllDispatch(); }