mitao
2025-01-17 922d7aa03200fa293bbce565d43c58995ec58548
1
2
3
4
5
6
7
8
9
10
11
package com.zzg.system.service.state.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.zzg.common.core.domain.entity.state.StateProcessExtInstance;
import com.zzg.system.mapper.state.StateProcessExtInstanceMapper;
import com.zzg.system.service.state.StateProcessExtInstanceService;
import org.springframework.stereotype.Service;
 
@Service
public class StateProcessExtInstanceServiceImpl extends ServiceImpl<StateProcessExtInstanceMapper, StateProcessExtInstance> implements StateProcessExtInstanceService {
}