/user/orderDetailorderTime

This commit is contained in:
张松
2025-12-01 16:43:23 +08:00
parent 47207dbfa8
commit beb4f4d594

View File

@@ -36,8 +36,8 @@ public class AttendanceController {
public CzgResult<Map<String, String>> getConfig() {
ShopConfig config = shopConfigService.getById(StpKit.USER.getShopId());
return CzgResult.success(Map.of(
"dingAppKey", config.getDingAppKey(),
"dingAppSecret", config.getDingAppSecret()
"dingAppKey", config == null ? "" : config.getDingAppKey(),
"dingAppSecret", config == null ? "" :config.getDingAppSecret()
));
}