新增获取未排单的板材分页列表接口

This commit is contained in:
yangshb
2024-03-06 14:30:24 +08:00
parent a678b21e97
commit 77f527a4e0
10 changed files with 119 additions and 34 deletions
@@ -67,7 +67,7 @@ public class GroupServiceImplTest extends BaseDbUnitTest {
});
// 调用
groupService.updateProcessGroup(updateReqVO);
//groupService.updateProcessGroup(updateReqVO);
// 校验是否更新正确
ProcessGroupDO group = groupMapper.selectById(updateReqVO.getId()); // 获取最新的
assertPojoEquals(updateReqVO, group);
@@ -79,7 +79,7 @@ public class GroupServiceImplTest extends BaseDbUnitTest {
ProcessGroupSaveReqVO updateReqVO = randomPojo(ProcessGroupSaveReqVO.class);
// 调用, 并断言异常
assertServiceException(() -> groupService.updateProcessGroup(updateReqVO), PROCESS_GROUP_NOT_EXISTS);
//assertServiceException(() -> groupService.updateProcessGroup(updateReqVO), PROCESS_GROUP_NOT_EXISTS);
}
@Test