|
|
@ -400,14 +400,9 @@ public class AnnualCompController extends JeecgController<AnnualComp, IAnnualCom |
|
|
|
//@RequiresPermissions("annualcomp:annual_comp:edit")
|
|
|
|
//@RequiresPermissions("annualcomp:annual_comp:edit")
|
|
|
|
@RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST}) |
|
|
|
@RequestMapping(value = "/edit", method = {RequestMethod.PUT, RequestMethod.POST}) |
|
|
|
public Result<String> edit(@RequestBody AnnualComp annualComp) { |
|
|
|
public Result<String> edit(@RequestBody AnnualComp annualComp) { |
|
|
|
if (annualComp.getBackinfo() != null && annualComp.getBackinfo() != "") { |
|
|
|
|
|
|
|
annualComp.setState("3"); |
|
|
|
|
|
|
|
annualCompService.updateById(annualComp); |
|
|
|
|
|
|
|
return Result.OK("驳回成功!"); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
annualCompService.updateById(annualComp); |
|
|
|
annualCompService.updateById(annualComp); |
|
|
|
return Result.OK("编辑成功!"); |
|
|
|
return Result.OK("编辑成功!"); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@AutoLog(value = "年度比赛管理-驳回") |
|
|
|
@AutoLog(value = "年度比赛管理-驳回") |
|
|
|