Commit aec7576c authored by shiyu's avatar shiyu

查询标签不校验登录

parent dc2d75e3
...@@ -43,7 +43,7 @@ public class WebMvcConfiguration implements WebMvcConfigurer { ...@@ -43,7 +43,7 @@ public class WebMvcConfiguration implements WebMvcConfigurer {
"/imCallback/**", "/wx/category/**", "/imCallback/**", "/wx/category/**",
"/wx/consignSale/**", "/wx/item/**", "/wx/consignSale/**", "/wx/item/**",
"/wx/returnOrder/**", "/wx/distributionOrder/confirmSigned", "/wx/distributionOrder/delivery", "/wx/distributionOrder/cancel", "/wx/returnOrder/**", "/wx/distributionOrder/confirmSigned", "/wx/distributionOrder/delivery", "/wx/distributionOrder/cancel",
"/wx/distributionOrder/refund", "/wx/distributionOrder/refund", "/wx/collectionBook/findList",
"/wx/supplierItem/findItemsOfCurrentDistributor", "/wx/selfPage/updateSwitch","/wx/selfPage/checkIsMine", "/wx/supplierItem/findItemsOfCurrentDistributor", "/wx/selfPage/updateSwitch","/wx/selfPage/checkIsMine",
"/wx/specialPerformance/sendMsg", "/wx/specialPerformance/sendMsgTest", "/wx/groupPurchase/systemAddRecord","/wx/officialAccount/**", "/wx/specialPerformance/sendMsg", "/wx/specialPerformance/sendMsgTest", "/wx/groupPurchase/systemAddRecord","/wx/officialAccount/**",
"/wx/supplierItem/**","/wx/specialPerformance/**","/wx/groupPurchase/**","/wx/disposableSubscribeRecord/**", "/wx/auctionRecord/findList" "/wx/supplierItem/**","/wx/specialPerformance/**","/wx/groupPurchase/**","/wx/disposableSubscribeRecord/**", "/wx/auctionRecord/findList"
......
...@@ -49,9 +49,6 @@ public class CollectionBookController { ...@@ -49,9 +49,6 @@ public class CollectionBookController {
@PostMapping("/findList") @PostMapping("/findList")
public Result findList(@RequestBody CollectionBookRequestDto dto) { public Result findList(@RequestBody CollectionBookRequestDto dto) {
logger.info("查询藏品标签,请求参数:{}", JSON.toJSONString(dto)); logger.info("查询藏品标签,请求参数:{}", JSON.toJSONString(dto));
if (dto.getUserId() == null) {
return Result.failed(ResultCode.PARAM_ERROR);
}
return collectionBookService.findList(dto); return collectionBookService.findList(dto);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment