管理员系统 优化 按用户名或用户邮箱 查询用户design频率

This commit is contained in:
2024-08-21 15:07:14 +08:00
parent c5da68dc47
commit 8a774aa328
3 changed files with 12 additions and 6 deletions

View File

@@ -18,5 +18,5 @@ public interface DesignMapper extends CommonMapper<Design> {
//返回插入数据后生成的主键
Long insertDesign(Design design);
List<UserDesignStatisticDTO> getDesignStatistic(String startTime, String endTime, String userName, String email);
List<UserDesignStatisticDTO> getDesignStatistic(String startTime, String endTime, List<Long> ids, String email);
}