package com.stylefeng.guns.modular.api; import com.stylefeng.guns.modular.system.service.IVersionManagementService; import com.stylefeng.guns.modular.system.util.ResultUtil; import com.stylefeng.guns.modular.system.warpper.VersionWarpper; import io.swagger.annotations.Api; import io.swagger.annotations.ApiImplicitParam; import io.swagger.annotations.ApiImplicitParams; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.Map; /** * 版本管理 */ @Api @CrossOrigin @RestController @RequestMapping("") public class VersionManagementController { @Autowired private IVersionManagementService versionManagementService; /** * 获取最新版本数据 * @return */ @ResponseBody @PostMapping("/api/version/queryNewData") @ApiOperation(value = "获取最新版本数据", tags = {"司机端-个人中心"}, notes = "") @ApiImplicitParams({ @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") }) public ResultUtil queryNewData(){ try { Map map = versionManagementService.queryNewVersion(2); return ResultUtil.success(VersionWarpper.getVersionWarpper(map)); }catch (Exception e){ e.printStackTrace(); return ResultUtil.runErr(); } } /** * 获取最新版本数据 * @return */ @ResponseBody @PostMapping("/base/version/queryNewData1") @ApiOperation(value = "获取最新版本数据", tags = {"司机端-个人中心"}, notes = "") @ApiImplicitParams({ }) public ResultUtil queryNewData1(){ try { Map map = versionManagementService.queryNewVersion(2); return ResultUtil.success(VersionWarpper.getVersionWarpper(map)); }catch (Exception e){ e.printStackTrace(); return ResultUtil.runErr(); } } /** * 获取最新版本数据(车载端) * @return */ @ResponseBody @PostMapping("/api/version/queryNewData_") @ApiOperation(value = "获取最新版本数据", tags = {"司机端-车载端"}, notes = "") @ApiImplicitParams({ @ApiImplicitParam(name = "Authorization", value = "Bearer +token", required = true, dataType = "String", paramType = "header", defaultValue = "Bearer eyJhbGciOiJIUzUxMiJ9.....") }) public ResultUtil queryNewData_(){ try { Map map = versionManagementService.queryNewVersion(3); return ResultUtil.success(VersionWarpper.getVersionWarpper(map)); }catch (Exception e){ e.printStackTrace(); return ResultUtil.runErr(); } } }