12345678910111213141516171819202122 |
- package com.bizmatics.controller.web;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.stereotype.Controller;
- import org.springframework.web.bind.annotation.RestController;
- /**
- * <p>
- * 前端控制器
- * </p>
- *
- * @author ya
- * @since 2021-07-07
- */
- @RestController
- @RequestMapping("/wcUserToken")
- public class WcUserTokenController {
- }
|