28 lines
847 B
Java
28 lines
847 B
Java
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<String,Integer> map){
|
|
String url = apkConfigService.getApkUrl(map.get("type"));
|
|
return R.ok().put("result",url);
|
|
}
|
|
|
|
}
|