Commit 71d9a9ca authored by Quxl's avatar Quxl

x

parent 0fafd900
package com.egolm.film.api.web.admin;
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.ResponseBody;
import com.egolm.common.bean.Rjx;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
@Api
@Controller
@RequestMapping("admin/webutil")
public class WebUtilController {
@ResponseBody
@PostMapping("initPassList")
@ApiOperation("初始化报名列表")
public Object initPassList() {
return Rjx.jsonOk();
}
}
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