Commit 64e4eee6 authored by Quxl's avatar Quxl

x

parent a2d67025
...@@ -9,8 +9,8 @@ import javax.annotation.Resource; ...@@ -9,8 +9,8 @@ import javax.annotation.Resource;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller; import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
import com.egolm.common.StringUtil; import com.egolm.common.StringUtil;
...@@ -41,7 +41,7 @@ public class WebApiController { ...@@ -41,7 +41,7 @@ public class WebApiController {
} }
@ResponseBody @ResponseBody
@PostMapping("getFilmList") @RequestMapping(value="getFilmList", method= {RequestMethod.GET, RequestMethod.POST})
@ApiOperation("查询参与评审环节的评委组") @ApiOperation("查询参与评审环节的评委组")
@ApiImplicitParams({ @ApiImplicitParams({
@ApiImplicitParam(paramType="query", dataType="string", name="timestamp"), @ApiImplicitParam(paramType="query", dataType="string", name="timestamp"),
......
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