BUGFIX:子账号批量导入、brand dna返回计算时间、按权限范围查询design频次

This commit is contained in:
2025-08-26 15:49:02 +08:00
parent 3cc329f983
commit 83ba69c950
5 changed files with 28 additions and 16 deletions

View File

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