12345678910111213141516171819202122 |
- package com.ozs.pm.service.impl;
- import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
- import com.ozs.pm.doman.PmFlowChart;
- import com.ozs.pm.mapper.PmFlowChartMapper;
- import com.ozs.pm.service.IPmFlowChartService;
- import org.springframework.stereotype.Service;
- /**
- * 流程图Service业务层处理
- *
- * @author ruoyi
- * @date 2023-01-25
- */
- @Service
- public class PmFlowChartServiceImpl extends ServiceImpl<PmFlowChartMapper, PmFlowChart> implements IPmFlowChartService
- {
- }
|