package com.peanut.modules.common.controller; import com.peanut.common.utils.R; import com.peanut.modules.common.service.ApkConfigService; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.Map; @Slf4j @RestController("commonApkConfigController") @RequestMapping("/common/apkConfig") public class ApkConfigController { @Autowired private ApkConfigService apkConfigService; @RequestMapping("/getApkUrl") public R getApkUrl(@RequestBody Map map){ String url = apkConfigService.getApkUrl(map.get("type")); return R.ok().put("result",url); } }