查询店铺操作密码设置

This commit is contained in:
2024-08-30 10:34:45 +08:00
parent 0172bd0478
commit bf18452189
2 changed files with 16 additions and 1 deletions

View File

@@ -59,4 +59,9 @@ public class ShopInfoController {
) {
return shopInfoService.queryDutyFlow(token, shopId, page,pageSize);
}
@GetMapping("queryPwdInfo")
public Result queryPwdInfo(@RequestParam("shopId") String shopId) {
return shopInfoService.queryShopPwdInfo(shopId);
}
}