package com.hotent.runtime.controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestParam; import com.hotent.base.model.CommonResult; import com.hotent.base.util.StringUtil; import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiParam; import org.springframework.web.bind.annotation.RestController; import com.hotent.base.controller.BaseController; import com.hotent.bpm.model.BpmFreeProcessDef; import com.hotent.bpm.persistence.manager.BpmFreeProcessDefManager; /** * 自由流程定义备份表 前端控制器 * * @company 广州宏天软件股份有限公司 * @author 超级管理员 * @since 2022-12-02 */ @RestController @RequestMapping("/bpmFreeProcessDef/v1/") public class BpmFreeProcessDefController extends BaseController { /** * 根据id获取自由流程定义备份表数据详情 * @param id * @return * @throws Exception * ModelAndView */ @GetMapping(value="/getDetail") @ApiOperation(value="根据id获取自由流程定义备份表数据详情",httpMethod = "GET",notes = "根据id获取自由流程定义备份表数据详情") public CommonResult getDetail(@ApiParam(name="id",value="业务对象主键", required = true)@RequestParam(required=true) String id) throws Exception{ return CommonResult.ok().value(baseService.getDetail(id)); } /** * 新增,更新自由流程定义备份表 * @param bpmFreeProcessDef * @throws Exception * @return * @exception */ @PostMapping(value="/save") @ApiOperation(value = "新增,更新自由流程定义备份表数据", httpMethod = "POST", notes = "新增,更新自由流程定义备份表数据") public CommonResult save(@ApiParam(name="BpmFreeProcessDef",value="自由流程定义备份表对象", required = true)@RequestBody BpmFreeProcessDef bpmFreeProcessDef) throws Exception{ String msg = StringUtil.isEmpty(bpmFreeProcessDef.getId()) ? "添加自由流程定义备份表成功" : "更新自由流程定义备份表成功"; baseService.createOrUpdate(bpmFreeProcessDef); return CommonResult.ok().message(msg); } }