模板查询倒叙

This commit is contained in:
liyj 2025-12-12 16:34:10 +08:00
parent 95ec63a3a2
commit 037f9f70b4

View File

@ -83,6 +83,7 @@ public class ShopPageAppController extends BaseControllerImpl {
if(user.isStore()) {
QueryWrapper<ShopPageApp> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("store_id", user.getStore_id());
queryWrapper.orderByDesc("app_id");
List<ShopPageApp> shopPageAppList= shopPageAppService.list(queryWrapper);
if(shopPageAppList.isEmpty()) {
String resultStr= accountBaseConfigService.getSystemConfig("service_app_tpl");