@RequiresPermissions("showcase:upload:create")
@RequestMapping(value = "create", method = RequestMethod.GET)
public String showCreateForm(Model model) {
model.addAttribute(Constants.OP_NAME, "新增");
if (!model.containsAttribute("upload")) {
model.addAttribute("upload", new Upload());
}
return "showcase/upload/ajax/editForm";
}