门店用户
This commit is contained in:
@ -141,6 +141,20 @@ public class CompanyStoreController extends BaseController
|
||||
return toAjax(companyStoreService.updateCompanyStore(companyStore));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改门店
|
||||
*/
|
||||
@RequiresPermissions("operation:store:edit")
|
||||
@GetMapping("/addStoreUser/{id}")
|
||||
public String addStoreUser(@PathVariable("id") Long id, ModelMap mmap)
|
||||
{
|
||||
|
||||
CompanyStore companyStore = companyStoreService.selectCompanyStoreById(id);
|
||||
mmap.put("companyStore", companyStore);
|
||||
|
||||
return prefix + "/addStoreUser";
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除门店
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user