|
@ -18,10 +18,9 @@ import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMethod;
|
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
import org.springframework.http.MediaType;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import java.io.IOException;
|
|
@ -32,8 +31,9 @@ import java.util.List;
|
|
|
* Created by chenweida on 2017/8/17.
|
|
|
*/
|
|
|
|
|
|
@RestController
|
|
|
@RequestMapping("/wlyygc/doctor/message")
|
|
|
@Controller
|
|
|
@RequestMapping(value = "/wlyygc/doctor/message", produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
|
|
|
@ResponseBody
|
|
|
@Api(description = "消息相关服务,包括短信,微信模板")
|
|
|
public class GcMessageController {
|
|
|
|