diff --git a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/controller/StaticDataController.java b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/controller/StaticDataController.java index c571b18..e50e3d5 100644 --- a/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/controller/StaticDataController.java +++ b/jeecg-module-system/jeecg-system-biz/src/main/java/org/jeecg/modules/api/controller/StaticDataController.java @@ -113,6 +113,14 @@ public class StaticDataController { jsonObject.set("tiQianPiZhiYuanNum", 1); jsonObject.set("benZhiYuanNum", 64); jsonObject.set("zhuanZhiYuanNum", 64); + // 会员截止时间 + jsonObject.set("memberDeadline", "2024年08月31日"); + // 联系人 + JSONObject contact = new JSONObject(); + contact.set("personNumber","15785689971"); + contact.set("personName","周老师"); + contact.set("images","https://mp-7a4eecb1-2a04-4d36-b050-1c4a78cc31a4.cdn.bspapp.com/images/web-bakground/20250619212936.jpg"); + jsonObject.set("contact", contact); return jsonObject; }