区域权限信息

This commit is contained in:
wangxiaopeng
2024-03-29 14:18:54 +08:00
parent 0670260c93
commit 400533ce7b
2 changed files with 46 additions and 0 deletions

View File

@@ -164,6 +164,7 @@
insert into xfsg_region_area_config insert into xfsg_region_area_config
( (
region_id, region_id,
region_path,
want_shop_area_id, want_shop_area_id,
create_time, create_time,
create_user_id, create_user_id,
@@ -174,6 +175,7 @@
<foreach collection="regionAreaConfigList" item="entity" separator=","> <foreach collection="regionAreaConfigList" item="entity" separator=",">
( (
#{entity.regionId}, #{entity.regionId},
#{entity.regionPath},
#{entity.wantShopAreaId}, #{entity.wantShopAreaId},
now(), now(),
#{entity.createUserId}, #{entity.createUserId},

View File

@@ -0,0 +1,44 @@
package com.cool.store.controller.webb;
import com.cool.store.entity.EnterpriseUserDO;
import com.cool.store.response.ResponseResult;
import com.cool.store.service.UserAuthMappingService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
/**
* @ClassName UserAuthMappingController
* @Description 区域权限信息
*/
@RestController
@RequestMapping("/pc/userAuthMapping")
@Api(tags = "区域权限信息")
@Slf4j
public class UserAuthMappingController {
@Autowired
private UserAuthMappingService userAuthMappingService;
@ApiOperation("找人")
@GetMapping("/getUserByRoleNameAndAreaId")
public ResponseResult<EnterpriseUserDO> getUserByRoleNameAndAreaId(@RequestParam(value = "roleName", required = true) String roleName,
@RequestParam(value = "wantShopAreaId", required = true) Long wantShopAreaId) {
return ResponseResult.success(userAuthMappingService.getUserByRoleNameAndAreaId(roleName, wantShopAreaId));
}
@ApiOperation("找意向区域")
@GetMapping("/listWantShopAreaIdByUserId")
public ResponseResult<List<Long>> listWantShopAreaIdByUserId(@RequestParam(value = "userId", required = true) String userId) {
return ResponseResult.success(userAuthMappingService.listWantShopAreaIdByUserId(userId));
}
}