|
@@ -44,9 +44,9 @@ public class CompanyController {
|
|
|
* @author : admin
|
|
* @author : admin
|
|
|
* @date : 2023/2/3 13:32
|
|
* @date : 2023/2/3 13:32
|
|
|
*/
|
|
*/
|
|
|
- @PostMapping({"select_company/{openid}"})
|
|
|
|
|
- public ResponseResultVO<?> selectByOpenId(@PathVariable String openid) {
|
|
|
|
|
- return companyService.selectByOpenId(openid);
|
|
|
|
|
|
|
+ @PostMapping({"select_company"})
|
|
|
|
|
+ public ResponseResultVO<?> selectByOpenId(@RequestBody Map<String,Object> map) {
|
|
|
|
|
+ return companyService.selectByOpenId(map.get("openId").toString());
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|