@Controller @RequestMapping(value="/job") public class JobController extends BaseController<SysJob>
Constructor and Description |
---|
JobController() |
Modifier and Type | Method and Description |
---|---|
String |
addJob(org.springframework.ui.Model model) |
JsonUtil |
addJob(SysJob job) |
JsonUtil |
del(String id) |
JsonUtil |
endJob(String id) |
String |
showUser(org.springframework.ui.Model model) |
ReType |
showUser(org.springframework.ui.Model model,
SysJob job,
String page,
String limit) |
JsonUtil |
startJob(String id) |
String |
updateJob(String id,
org.springframework.ui.Model model,
boolean detail) |
JsonUtil |
updateJob(SysJob job) |
authorizationException, initBinder
@GetMapping(value="showJob") public String showUser(org.springframework.ui.Model model)
@GetMapping(value="showJobList") @ResponseBody public ReType showUser(org.springframework.ui.Model model, SysJob job, String page, String limit)
@GetMapping(value="showAddJob") public String addJob(org.springframework.ui.Model model)
@Log(desc="\u6dfb\u52a0\u4efb\u52a1") @PostMapping(value="addJob") @ResponseBody public JsonUtil addJob(SysJob job)
@GetMapping(value="updateJob") public String updateJob(String id, org.springframework.ui.Model model, boolean detail)
@Log(desc="\u66f4\u65b0\u4efb\u52a1", type=UPDATE) @PostMapping(value="updateJob") @ResponseBody public JsonUtil updateJob(SysJob job)
@Log(desc="\u5220\u9664\u4efb\u52a1", type=DEL) @PostMapping(value="del") @ResponseBody public JsonUtil del(String id)
@Log(desc="\u542f\u52a8\u4efb\u52a1") @PostMapping(value="startJob") @ResponseBody public JsonUtil startJob(String id)
Copyright © 2019. All rights reserved.