package cn.flightfeather.supervision.domain.ds1.repository
|
|
import cn.flightfeather.supervision.domain.ds1.mapper.DataProductBaseMapper
|
import cn.flightfeather.supervision.domain.ds1.mapper.DataProductFinalMapper
|
import cn.flightfeather.supervision.domain.ds1.mapper.DataProductMiddleMapper
|
import org.springframework.stereotype.Repository
|
|
/**
|
* 数据产品数据库查询
|
* @date 2025/10/17
|
* @author feiyu02
|
*/
|
@Repository
|
class DataProductRep(
|
private val dataProductBaseMapper: DataProductBaseMapper,
|
private val dataProductMiddleMapper: DataProductMiddleMapper,
|
private val dataProductFinalMapper: DataProductFinalMapper
|
) {
|
|
|
/**
|
* 插入数据产品
|
*/
|
fun insertDataProduct() {
|
|
}
|
|
fun selectDataProduct() {
|
|
}
|
}
|