1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package mapper;
|
| import domain.ScCollectionParamConf;
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
| /**
| * @author Dell
| * @description 针对表【sc_collection_param_conf(参数采集配置)】的数据库操作Mapper
| * @createDate 2024-11-16 10:33:43
| * @Entity generator.domain.ScCollectionParamConf
| */
| public interface ScCollectionParamConfMapper extends BaseMapper<ScCollectionParamConf> {
|
| }
|
|