yanghb
2024-12-17 1287337fd0b0c156ec79712f9a600ebeffefe3a6
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 {
}