| | |
| | | package com.fzzy.sys.controller.system; |
| | | |
| | | import com.fzzy.igds.domain.Bank; |
| | | import com.fzzy.igds.service.BankService; |
| | | import com.ruoyi.common.annotation.Log; |
| | | import com.ruoyi.common.core.controller.BaseController; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | |
| | | |
| | | @Autowired |
| | | private SysPasswordService passwordService; |
| | | |
| | | @Autowired |
| | | private BankService bankService; |
| | | |
| | | @RequiresPermissions("system:user:view") |
| | | @GetMapping() |
| | |
| | | |
| | | |
| | | mmap.put("posts", postService.selectPostAll(ShiroUtils.getLoginUserCompanyId())); |
| | | |
| | | mmap.put("banks", bankService.listAll(null)); |
| | | return prefix + "/add"; |
| | | } |
| | | |
| | |
| | | String companyId = ShiroUtils.getLoginUserCompanyId(); |
| | | |
| | | mmap.put("posts", postService.selectPostsByUserId(userId, companyId)); |
| | | |
| | | |
| | | mmap.put("banks", bankService.listAll(null)); |
| | | |
| | | return prefix + "/edit"; |
| | | } |
| | | |