|
@@ -24,10 +24,8 @@ import net.mingsoft.people.action.people.PeopleUserAction;
|
|
|
import net.mingsoft.people.action.web.PeopleAction;
|
|
import net.mingsoft.people.action.web.PeopleAction;
|
|
|
import net.mingsoft.people.biz.IPeopleBiz;
|
|
import net.mingsoft.people.biz.IPeopleBiz;
|
|
|
import net.mingsoft.people.entity.PeopleEntity;
|
|
import net.mingsoft.people.entity.PeopleEntity;
|
|
|
-import net.mingsoft.tf.biz.IExhibitionBiz;
|
|
|
|
|
-import net.mingsoft.tf.biz.IExhibitorBiz;
|
|
|
|
|
-import net.mingsoft.tf.biz.IGuestBiz;
|
|
|
|
|
-import net.mingsoft.tf.biz.IPeopleExhibitorBiz;
|
|
|
|
|
|
|
+import net.mingsoft.tf.biz.*;
|
|
|
|
|
+import net.mingsoft.tf.entity.BoothEntity;
|
|
|
import net.mingsoft.tf.entity.GuestEntity;
|
|
import net.mingsoft.tf.entity.GuestEntity;
|
|
|
import net.mingsoft.tf.wx.dto.ExhibitorInfoResponse;
|
|
import net.mingsoft.tf.wx.dto.ExhibitorInfoResponse;
|
|
|
import net.mingsoft.tf.wx.dto.GuestRequest;
|
|
import net.mingsoft.tf.wx.dto.GuestRequest;
|
|
@@ -71,6 +69,8 @@ public class WxPeopleAction extends BaseAction {
|
|
|
private IGuestBiz guestBiz;
|
|
private IGuestBiz guestBiz;
|
|
|
@Autowired
|
|
@Autowired
|
|
|
private IExhibitionBiz exhibitionBiz;
|
|
private IExhibitionBiz exhibitionBiz;
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private IBoothBiz boothBiz;
|
|
|
@Value("${wx.appid}")
|
|
@Value("${wx.appid}")
|
|
|
private String appid;
|
|
private String appid;
|
|
|
@Value("${wx.secret}")
|
|
@Value("${wx.secret}")
|
|
@@ -261,4 +261,11 @@ public class WxPeopleAction extends BaseAction {
|
|
|
.map(ResultData.build()::success)
|
|
.map(ResultData.build()::success)
|
|
|
.orElseGet(ResultData.build()::success);
|
|
.orElseGet(ResultData.build()::success);
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @Operation(summary = "微信-所有展位")
|
|
|
|
|
+ @GetMapping(value = "/booth")
|
|
|
|
|
+ @ResponseBody
|
|
|
|
|
+ public ResultData booth() {
|
|
|
|
|
+ return ResultData.build().success(boothBiz.query(new BoothEntity()));
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|