首页>代码>SSM+vuejs开发新闻、段子发布系统,包括前台显示和后台管理>/wcdong/wcdog-master/wcdog-master/src/main/java/com/xandone/wcdog/controller/ApkController.java
package com.xandone.wcdog.controller; import com.xandone.wcdog.config.Config; import com.xandone.wcdog.pojo.ApkBean; import com.xandone.wcdog.pojo.Base.BaseResult; import com.xandone.wcdog.service.ApkService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; import java.util.ArrayList; import java.util.List; import static com.xandone.wcdog.config.Config.SUCCESS_CODE; /** * @author :xandone * created on :2019/7/3 11:33 * description: */ @Controller @RequestMapping(value = "apk") public class ApkController { @Autowired ApkService apkService; @RequestMapping(value = "/checkversion") @ResponseBody public BaseResult getLastApk() { BaseResult baseResult = new BaseResult(); try { ApkBean apkBean = apkService.getLastApk(); List<ApkBean> list = new ArrayList<>(); list.add(apkBean); baseResult.setData(list); baseResult.setCode(SUCCESS_CODE); } catch (Exception e) { e.printStackTrace(); baseResult.setCode(Config.ERROR_CODE); return baseResult; } return baseResult; } }
最近下载更多
1690356080 LV37
5月2日
半夏bx LV14
3月8日
zhanxy LV2
2月14日
微信网友_6795047654346752 LV1
2023年12月26日
liuxiao2 LV16
2023年10月20日
微信网友_6465435620184064 LV6
2023年6月18日
微信网友_6509705287716864 LV2
2023年6月8日
张aaaaa LV1
2023年5月13日
pangzhihui LV14
2023年5月3日
fusangcheng LV1
2023年5月2日