增加法治审核、检查项列表查询等接口

This commit is contained in:
luolianxin 2025-03-28 13:54:20 +08:00
parent e0dd5bf090
commit 3534191ffe
3 changed files with 3 additions and 0 deletions

View File

@ -109,6 +109,7 @@ public class CaseController {
return Ok.of(((Case) caseService.saveEvidence(caseInfo).get(0)));
}
/**
* 法制审核原分析研判
*

View File

@ -19,6 +19,7 @@ import org.springframework.web.bind.annotation.*;
@RequestMapping("/api/legal-review")
public class LegalReviewController {
private final LegalReviewService legalReviewService;
public LegalReviewController(LegalReviewService legalReviewService) {

View File

@ -538,6 +538,7 @@ public class CaseService {
}
}
@PublishDataChange(action = DataChangeAction.SAVE)
@Transactional
public List<Object> discuss(Case c) {