fuliqi
2024-01-09 ebb1a448339bafc4c4849fdbc2291bd3a28261df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ycl.service.caseHandler.impl;
 
import com.ycl.entity.caseHandler.WorkflowConfig;
import com.ycl.mapper.caseHandler.WorkflowConfigMapper;
import com.ycl.service.caseHandler.IWorkflowConfigService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 处置流程配置表 服务实现类
 * </p>
 *
 * @author wl
 * @since 2022-09-24
 */
@Service
public class WorkflowConfigServiceImpl extends ServiceImpl<WorkflowConfigMapper, WorkflowConfig> implements IWorkflowConfigService {
 
}