yanghb
2025-01-07 1ea7e38d7d2152012db3f49934e84d164a07d613
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.StateProcessInstanceAction;
import com.zzg.system.mapper.state.StateProcessInstanceActionMapper;
import com.zzg.system.service.state.StateProcessInstanceActionService;
import org.springframework.stereotype.Service;
 
@Service
public class StateProcessInstanceActionServiceImpl extends ServiceImpl<StateProcessInstanceActionMapper, StateProcessInstanceAction> implements StateProcessInstanceActionService {
}