package cn.flightfeather.supervision.lightshare.web
|
|
import cn.flightfeather.supervision.lightshare.service.UserMapService
|
import io.swagger.annotations.Api
|
import org.springframework.web.bind.annotation.*
|
|
@Api(tags = ["VersionController"], description = "用户id对应API接口")
|
@RestController
|
@RequestMapping("/usermap")
|
class UserMapController(val userMapService: UserMapService) {
|
|
@GetMapping
|
fun getTZId(@RequestParam("sceneId") sceneId: String) = userMapService.getTZIdBySceneId(sceneId)
|
}
|