1234567891011121314151617181920 |
- package com.yihu.figure.controller;
- import com.yihu.figure.service.DietService;
- 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 = "/diet", produces = MediaType.APPLICATION_JSON_UTF8_VALUE)
- @Api(description = "饮食")
- public class DietController {
- @Autowired
- private DietService dietService;
- }
|