feiyu02
2025-10-30 9cb8d7e0f4ffca386b14a15f8a0aca4d1db23252
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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() {
 
    }
}