项目导入初始化

This commit is contained in:
暮光:城中城
2018-11-27 22:19:16 +08:00
parent 9350e107f2
commit f3d2b4eeab
189 changed files with 16210 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
package com.zyplayer.doc.manage.web.swagger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.zyplayer.doc.manage.repository.manage.mapper.ZyplayerStorageMapper;
/**
* <p>
* 前端控制器
* </p>
*
* @author 暮光:城中城
* @since 2018-11-27
*/
@RestController
@RequestMapping("/zyplayer-storage")
public class ZyplayerStorageController {
@Autowired
ZyplayerStorageMapper zyplayerStorageMapper;
@RequestMapping("/mapper")
public String mapper() {
Integer selectTop = zyplayerStorageMapper.selectTop();
return "selectTop:" + selectTop;
}
}