package com.yihu.figure.controller; import com.yihu.figure.service.MedicinalService; import io.swagger.annotations.Api; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; /** * Created by chenweida on 2017/3/6. * 用药建议 */ @RestController @RequestMapping(value = "/medicinal", produces = MediaType.APPLICATION_JSON_UTF8_VALUE) @Api(description = "用药建议") public class MedicinalController { @Autowired private MedicinalService medicinalService; }