吴健
2024-11-16 99e00ff4a4542e5fb3378e2d8c18e0eeabc0bb29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import domain.ScCollectionParamConf;
import service.ScCollectionParamConfService;
import mapper.ScCollectionParamConfMapper;
import org.springframework.stereotype.Service;
 
/**
* @author Dell
* @description 针对表【sc_collection_param_conf(参数采集配置)】的数据库操作Service实现
* @createDate 2024-11-16 10:33:43
*/
@Service
public class ScCollectionParamConfServiceImpl extends ServiceImpl<ScCollectionParamConfMapper, ScCollectionParamConf>
    implements ScCollectionParamConfService{
 
}