xuhy
2025-02-20 67efe2c14617cad2e8367e27cd3f4b45eb749c38
1
2
3
4
5
6
7
8
9
10
11
package com.ruoyi.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.system.mapper.StateTaskCenterMapper;
import com.ruoyi.system.model.StateTaskCenter;
import com.ruoyi.system.service.StateTaskCenterService;
import org.springframework.stereotype.Service;
 
@Service
public class StateTaskCenterServiceImpl extends ServiceImpl<StateTaskCenterMapper, StateTaskCenter> implements StateTaskCenterService {
}