add operation type

This commit is contained in:
robin
2023-08-12 19:32:29 +08:00
parent a3d2a6a28c
commit c0cc2fb60b
2 changed files with 8 additions and 0 deletions

View File

@ -101,6 +101,9 @@ public class OperationServiceImpl implements OperationService {
if (StringUtils.isNotBlank(param.getTabOpened())) {
queryWrapper.eq("tab_opened", param.getTabOpened());
}
if (StringUtils.isNotBlank(param.getOperationType())) {
queryWrapper.eq("operation_type", param.getOperationType());
}
Integer start = param.getPageNo();
Integer offset = param.getPageSize();
Page<OperationSavedDO> page = new Page<>(start, offset);