Browse Source

台帐发货表

v1.0
15989082884@163.com 2 years ago
parent
commit
dc0eb4fdc4
  1. 19
      src/main/java/com/qs/serve/modules/bir/mapper/BirReportAccountBookMapper.java

19
src/main/java/com/qs/serve/modules/bir/mapper/BirReportAccountBookMapper.java

@ -48,5 +48,24 @@ public interface BirReportAccountBookMapper {
@InterceptorIgnore(tenantLine = "true")
List<Map<String, Object>> 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();
}

Loading…
Cancel
Save