xuhy
2025-02-20 298a6a7085823ec754762c39affe145bb47e4aaa
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 {
}