|
@@ -23,7 +23,7 @@ public interface CrmAnalyseMapper extends BaseMapper<TBCrm> {
|
|
|
@SuppressWarnings("MybatisXMapperMethodInspection")
|
|
|
Map<String, Object> countCustomType(@Param("startTime") Long startTime, @Param("endTime") Long endTime, @Param("dpr") DataPermissionDto dpr);
|
|
|
|
|
|
- IPage<TBCrmResult> crmDetail(Page<Object> iPage, @Param("startTime") Long startTime, @Param("endTime") Long endTime, @Param("month") String month, @Param("crmYear") String crmYear, @Param("type") String type, @Param("supplierId") Long supplierId, @Param("regionId") Long regionId, @Param("serviceId") Long serviceId, @Param("dpr") DataPermissionDto dpr);
|
|
|
+ IPage<TBCrmResult> crmDetail(Page<Object> iPage, @Param("startTime") Long startTime, @Param("endTime") Long endTime, @Param("month") String month, @Param("crmYear") String crmYear, @Param("type") String type, @Param("supplierId") Long supplierId, @Param("province") String province, @Param("serviceId") Long serviceId, @Param("dpr") DataPermissionDto dpr);
|
|
|
|
|
|
default IPage<TBCrmResult> crmDetail(Page<Object> iPage, Long startTime, Long endTime, String type, DataPermissionDto dpr) {
|
|
|
return crmDetail(iPage, startTime, endTime, null, null, type, null, null, null, dpr);
|
|
@@ -44,8 +44,8 @@ public interface CrmAnalyseMapper extends BaseMapper<TBCrm> {
|
|
|
|
|
|
List<CrmAnalyseResult> region(@Param("startTime") Long startTime, @Param("endTime") Long endTime, @Param("type") String type, @Param("dpr") DataPermissionDto dpr);
|
|
|
|
|
|
- default IPage<TBCrmResult> crmDetail(Page<Object> iPage, Long startTime, Long endTime, Long regionId, String type, DataPermissionDto dpr) {
|
|
|
- return crmDetail(iPage, startTime, endTime, null, null, type, null, regionId, null, dpr);
|
|
|
+ default IPage<TBCrmResult> crmDetail(Page<Object> iPage, Long startTime, Long endTime, String province, String type, DataPermissionDto dpr) {
|
|
|
+ return crmDetail(iPage, startTime, endTime, null, null, type, null, province, null, dpr);
|
|
|
}
|
|
|
|
|
|
default IPage<TBCrmResult> crmDetail(Page<Object> iPage, Long serviceId, Long startTime, Long endTime, DataPermissionDto dpr) {
|