吴健
2024-11-19 6fbc7b7b7e21b60c9c0f8e0559ae67bfe42ce477
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.billion.main.mapper;
 
import com.billion.main.domain.DaParamCollection;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
 
/**
* @author Dell
* @description 针对表【da_param_collection(参数采集)】的数据库操作Mapper
* @createDate 2024-11-16 10:33:43
* @Entity generator.domain.DaParamCollection
*/
@Mapper
public interface DaParamCollectionMapper extends BaseMapper<DaParamCollection> {
 
}