Commit 84bb6aaa authored by Quxl's avatar Quxl

完善申报接口

parent fa9f2fd2
......@@ -37,7 +37,7 @@ public class MemberApplyController {
private MemberTokenService tokenService;
@ResponseBody
@PostMapping("list")
@PostMapping("get_list")
@ApiOperation("申报项目查询")
public Object list() {
LoginToken loginToken = tokenService.getToken();
......@@ -159,7 +159,7 @@ public class MemberApplyController {
}
@ResponseBody
@PostMapping("getDetail")
@PostMapping("get_detail")
@ApiOperation("获取全部申报信息")
@ApiImplicitParams({@ApiImplicitParam(paramType = "query", dataType = "long", required = true, name = "member_film_id", value="申报影片ID")})
public Object getDetail(Long member_film_id) {
......@@ -172,7 +172,7 @@ public class MemberApplyController {
}
@ResponseBody
@PostMapping("doApply")
@PostMapping("do_apply")
@ApiOperation("提交申报")
@ApiImplicitParams({@ApiImplicitParam(paramType = "query", dataType = "long", required = true, name = "member_film_id", value="申报影片ID")})
public Object doApply(Long member_film_id) {
......@@ -183,7 +183,7 @@ public class MemberApplyController {
}
@ResponseBody
@PostMapping("getMore")
@PostMapping("get_more")
@ApiOperation("获取更多影片信息")
@ApiImplicitParams({@ApiImplicitParam(paramType = "query", dataType = "string", required = true, name = "film_no", value="情报影片编号")})
public Object getMore(String film_no) {
......@@ -192,7 +192,7 @@ public class MemberApplyController {
}
@ResponseBody
@PostMapping("saveMore")
@PostMapping("save_more")
@ApiOperation("获取更多影片信息")
public Object saveMore(Fc_member_film_all more) {
memberService.saveMore(more);
......
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