Commit 10013956 authored by shiyu's avatar shiyu

1

parent 0376e878
package com.wwdz.ch.wx.web;
import com.wwdz.ch.wx.service.UserAccountService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/wx/userAccount")
public class UserAccountController {
private static final Logger logger = LoggerFactory.getLogger(UserAccountController.class);
@Autowired
UserAccountService userAccountService;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment