123456789101112131415161718 |
- package com.ym.mec.collectfee.controller;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- import com.ym.mec.collectfee.common.web.BaseController;
- @RestController
- @RequestMapping("")
- public class DemoController extends BaseController {
- @GetMapping("/info")
- public Object getInfo() {
- System.out.println("************* Demo Controller *************");
- return succeed();
- }
- }
|