门店用户

This commit is contained in:
19173159168
2025-07-29 23:36:11 +08:00
parent 5c99499084
commit 9088c470c3
10 changed files with 203 additions and 59 deletions

View File

@ -2,6 +2,8 @@ package com.ruoyi.operation.controller;
import java.util.List;
import com.ruoyi.baseUser.domain.ZcBaseUser;
import com.ruoyi.baseUser.service.IZcBaseUserService;
import com.ruoyi.common.constant.CompanyConstants;
import com.ruoyi.common.constant.UserConstants;
import com.ruoyi.common.core.domain.entity.SysUser;
@ -37,6 +39,9 @@ public class CompanyStoreController extends BaseController
private ICompanyStoreService companyStoreService;
@Autowired
private ICompanyService companyService;
@Autowired
private IZcBaseUserService zcBaseUserService;
@RequiresPermissions("operation:store:view")
@GetMapping()
@ -152,6 +157,8 @@ public class CompanyStoreController extends BaseController
CompanyStore companyStore = companyStoreService.selectCompanyStoreById(id);
mmap.put("companyStore", companyStore);
List<ZcBaseUser> zcBaseUserList = zcBaseUserService.selectZcBaseUserByStoreId(id);
mmap.put("zcBaseUserList", zcBaseUserList);
return prefix + "/addStoreUser";
}