mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-08-02 21:50:43 +08:00
add operation type
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user