|
@@ -39,6 +39,13 @@ public class RegularManagementController {
|
|
|
return CommonResult.success(regularManagementFacade.getRegularPage(getRegularPageVO));
|
|
|
}
|
|
|
|
|
|
+ @ApiOperation(value = "判断该正则式是否关联 [by:songxl]", notes = "判断该正则式是否关联")
|
|
|
+ @PostMapping("/isRelation")
|
|
|
+ @Transactional
|
|
|
+ public CommonResult<Boolean> isRelation(@RequestBody @Valid UpRegularByIdVO upRegularByIdVO) {
|
|
|
+ return CommonResult.success(regularManagementFacade.isRelation(upRegularByIdVO));
|
|
|
+ }
|
|
|
+
|
|
|
@ApiOperation(value = "新增正则式 [by:songxl]", notes = "新增正则式")
|
|
|
@PostMapping("/addRegular")
|
|
|
@Transactional
|