promotion:修复砍价活动返回的 combinationPrice 为空的问题

This commit is contained in:
YunaiV
2023-10-06 22:29:11 +08:00
parent 1d9db4874f
commit c8f1269d6e
13 changed files with 63 additions and 42 deletions

View File

@ -56,7 +56,7 @@ public interface BaseMapperX<T> extends MPJBaseMapper<T> {
}
default Long selectCount() {
return selectCount(new QueryWrapper<T>());
return selectCount(new QueryWrapper<>());
}
default Long selectCount(String field, Object value) {