1、task分页查询bugfix
2、新增审批人属性
3、loginservice修改权限系统url
(cherry picked from commit e943a787d4)
This commit is contained in:
@@ -107,8 +107,9 @@ class TaskServiceTest extends ProtectionApplicationTests {
|
||||
|
||||
@Test
|
||||
void testPageQueryTask(){
|
||||
List<Task> tasks = taskService.queryTasks(null, null, null, null, null,null, null, null, null, 1, 10);
|
||||
System.out.println(tasks);
|
||||
List<Task> tasks = taskService.queryTasks(null, null, "", "", null,"", null, "", "", 1, 10);
|
||||
// System.out.println(tasks);
|
||||
tasks.forEach(task -> System.out.println(task));
|
||||
}
|
||||
|
||||
@Test
|
||||
@@ -353,4 +354,9 @@ class TaskServiceTest extends ProtectionApplicationTests {
|
||||
map.put(43849,0);
|
||||
System.out.println(taskService.queryAuditStatusBatch(map));
|
||||
}
|
||||
|
||||
@Test
|
||||
void testQueryTaskTotalNum(){
|
||||
System.out.println(taskService.queryTaskTotalNum(null, null, "", "", null, "", "", "", ""));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user