| | |
| | | List<TCity> provinceList = cityService.list(new LambdaQueryWrapper<TCity>().eq(TCity::getParentId, 0)); |
| | | model.addAttribute("provinceList",provinceList); |
| | | List<Bank> bankList = operatorService.getBankList(); |
| | | TStore store = storeService.getOne(new QueryWrapper<TStore>().eq("operatorId", id)); |
| | | TStore store = storeService.getOne(new QueryWrapper<TStore>().eq("cityManagerId", id)); |
| | | model.addAttribute("storeName",store.getName()); |
| | | // TStoreStaff storeByStoreStaffId = storeStaffClient.getStoreByStoreStaffId(store.getStoreStaffId()); |
| | | // model.addAttribute("storeStaff",storeByStoreStaffId.getName()); |
| | | // model.addAttribute("storePhone",storeByStoreStaffId.getPhone()); |
| | | TStoreStaff storeByStoreStaffId = storeStaffClient.getStoreByStoreStaffId(store.getStoreStaffId()); |
| | | model.addAttribute("storeStaff",storeByStoreStaffId.getName()); |
| | | model.addAttribute("storePhone",storeByStoreStaffId.getPhone()); |
| | | model.addAttribute("bankList",bankList); |
| | | return PREFIX + "OperatorUser_auth.html"; |
| | | } |