Compare commits

..

No commits in common. "c067dacc847bff6c23a346fd013b12faec3f879c" and "26316752c134ea6050e47d4ef097baa8b53f7b5a" have entirely different histories.

4 changed files with 5 additions and 5 deletions

View File

@ -88,7 +88,7 @@ public interface IFlowBusinessKeyService {
public List<FlowTaskEntity> groupByUnitFinish(FlowTaskEntity where);
public List<FlowTaskEntity> groupByProject(long deptId,String proType);
public List<FlowTaskEntity> groupByProject(long deptId);
/**
*

View File

@ -159,8 +159,8 @@ public class FlowBusinessKeyServiceImpl implements IFlowBusinessKeyService {
}
@Override
public List<FlowTaskEntity> groupByProject(long deptId,String proType) {
return flowBusinessKeyMapper.groupByProject(deptId,proType);
public List<FlowTaskEntity> groupByProject(long deptId) {
return flowBusinessKeyMapper.groupByProject(deptId);
}
/**

View File

@ -80,7 +80,7 @@ public interface FlowBusinessKeyMapper {
public List<FlowTaskEntity> groupByUnitFinish(FlowTaskEntity where);
public List<FlowTaskEntity> groupByProject(@Param("deptId")long deptId,@Param("proType")String proType);
public List<FlowTaskEntity> groupByProject(long deptId);
/**
*

View File

@ -186,7 +186,7 @@ public class FloweController extends BaseController {
if(obj!=null){
return success(obj);
}
List<FlowTaskEntity> list=flowBusinessKeyService.groupByProject(deptId,where.getProType());
List<FlowTaskEntity> list=flowBusinessKeyService.groupByProject(deptId);
redisCache.setCacheObject(key, list, Constants.BIGSCREEN_QUERY_CACHE, TimeUnit.MINUTES);
return success(list);
}