This commit is contained in:
zhouwentao 2025-06-19 23:40:32 +08:00
parent d7494b6833
commit 59c68490ba
1 changed files with 8 additions and 0 deletions

View File

@ -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;
}