fix:添加查询操作日志记录

This commit is contained in:
2025-12-10 13:52:55 +08:00
parent 5e7880e4a1
commit fa92a2c09a
9 changed files with 36 additions and 0 deletions

View File

@@ -75,6 +75,7 @@ public class FlowController implements ISimulationFlowFeignClient {
* @param req
* @return
*/
@SysLog("查询流程模版")
@PostMapping("/queryFlowTemplate")
public SdmResponse queryFlowTemplate(@RequestBody @Validated GetFlowTemplateReq req) {
return IFlowService.getReleaseFlowTemplateByCondition(req.templateType,req.templateName,req.approveType,req.beginTime,req.endTime,req.creator,req.current,req.size,req.type,req.templateStatus);
@@ -86,6 +87,7 @@ public class FlowController implements ISimulationFlowFeignClient {
* @param type 0:uuid 1:templateCode
* @return
*/
@SysLog("查询仿真流程模版版本信息")
@GetMapping("/queryFlowTemplateVersion")
public SdmResponse queryFlowTemplateVersion(@RequestParam("code") String code,@RequestParam("type") int type) {
return IFlowService.getFlowTemplateVersions(code,type);