|
|
@@ -96,6 +96,19 @@ public class PtSubsidyController extends BaseController {
|
|
|
return toAjax(ptSubsidyService.updateByBo(bo));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 补助设置审核
|
|
|
+ */
|
|
|
+ @SaCheckPermission("subsidy:ptSubsidy:audit")
|
|
|
+ @Log(title = "补助设置审核", businessType = BusinessType.UPDATE)
|
|
|
+ @RepeatSubmit()
|
|
|
+ @SyncDataToLocal(eventType = SUBSIDY_EDIT, sender = SUBSIDY_SENDER)
|
|
|
+ @PutMapping("/audit")
|
|
|
+ public R<Void> audit(@Validated(EditGroup.class) @RequestBody PtSubsidyBo bo) {
|
|
|
+ return toAjax(ptSubsidyService.updateByBo(bo));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 删除补助设置
|
|
|
*
|